mailtrain/views/templates/templates.hbs

55 lines
1.8 KiB
Handlebars
Raw Normal View History

2016-04-04 12:36:30 +00:00
<ol class="breadcrumb">
2017-03-07 14:30:56 +00:00
<li><a href="/">{{#translate}}Home{{/translate}}</a></li>
<li class="active">{{#translate}}Templates{{/translate}}</li>
2016-04-04 12:36:30 +00:00
</ol>
<div class="pull-right">
2017-03-07 14:30:56 +00:00
<a class="btn btn-primary" href="/templates/create" role="button"><i class="glyphicon glyphicon-plus"></i> {{#translate}}Create Template{{/translate}}</a>
2016-04-04 12:36:30 +00:00
</div>
2017-03-07 14:30:56 +00:00
<h2>{{#translate}}Templates{{/translate}}</h2>
2016-04-04 12:36:30 +00:00
<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>
2017-03-07 14:30:56 +00:00
{{#translate}}Name{{/translate}}
2016-04-04 12:36:30 +00:00
</th>
<th>
2017-03-07 14:30:56 +00:00
{{#translate}}Description{{/translate}}
2016-04-04 12:36:30 +00:00
</th>
<th class="col-md-1">
&nbsp;
</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}}">
2017-03-07 14:30:56 +00:00
{{#translate}}Edit{{/translate}}
2016-04-04 12:36:30 +00:00
</a>
</td>
</tr>
{{/each}}
</tbody>
{{/if}}
</table>
</div>