54 lines
1.8 KiB
Handlebars
54 lines
1.8 KiB
Handlebars
<ol class="breadcrumb">
|
|
<li><a href="/">{{#translate}}Home{{/translate}}</a></li>
|
|
<li class="active">{{#translate}}Templates{{/translate}}</li>
|
|
</ol>
|
|
|
|
<div class="pull-right">
|
|
<a class="btn btn-primary" href="/templates/create" role="button"><i class="glyphicon glyphicon-plus"></i> {{#translate}}Create Template{{/translate}}</a>
|
|
</div>
|
|
|
|
<h2>{{#translate}}Templates{{/translate}}</h2>
|
|
|
|
<hr>
|
|
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered table-hover data-table display nowrap" width="100%" data-row-sort="0,1,0,0">
|
|
<thead>
|
|
<th class="col-md-1">
|
|
#
|
|
</th>
|
|
<th>
|
|
{{#translate}}Name{{/translate}}
|
|
</th>
|
|
<th>
|
|
{{#translate}}Description{{/translate}}
|
|
</th>
|
|
<th class="col-md-1">
|
|
|
|
</th>
|
|
</thead>
|
|
{{#if rows}}
|
|
<tbody>
|
|
{{#each rows}}
|
|
<tr>
|
|
<th scope="row">
|
|
{{index}}
|
|
</th>
|
|
<td>
|
|
<span class="glyphicon glyphicon-file" aria-hidden="true"></span> {{name}}
|
|
</td>
|
|
<td>
|
|
<p class="text-muted">{{description}}</p>
|
|
</td>
|
|
<td>
|
|
<span class="glyphicon glyphicon-wrench" aria-hidden="true"></span>
|
|
<a href="/templates/edit/{{id}}">
|
|
{{#translate}}Edit{{/translate}}
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
{{/if}}
|
|
</table>
|
|
</div>
|