mailtrain/views/lists/lists.hbs

69 lines
2.2 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}}Lists{{/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="/lists/create" role="button"><i class="glyphicon glyphicon-plus"></i> {{#translate}}Create List{{/translate}}</a>
2016-04-04 12:36:30 +00:00
</div>
2017-03-07 14:30:56 +00:00
<h2>{{#translate}}Lists{{/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,1,1,0,0">
2016-04-04 12:36:30 +00:00
<thead>
2017-03-19 12:36:57 +00:00
<th>
2016-04-04 12:36:30 +00:00
#
</th>
<th>
2017-03-07 14:30:56 +00:00
{{#translate}}Name{{/translate}}
2016-04-04 12:36:30 +00:00
</th>
2017-03-19 12:36:57 +00:00
<th>
2017-03-07 14:30:56 +00:00
{{#translate}}ID{{/translate}}
</th>
2017-03-19 12:36:57 +00:00
<th>
2017-03-07 14:30:56 +00:00
{{#translate}}Subscribers{{/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>
2017-03-19 12:36:57 +00:00
<th>
2016-04-04 12:36:30 +00:00
&nbsp;
</th>
</thead>
{{#if rows}}
<tbody>
{{#each rows}}
<tr>
<th scope="row">
{{index}}
</th>
2017-03-19 12:36:57 +00:00
<td style="width: 30%;">
2016-04-04 12:36:30 +00:00
<span class="glyphicon glyphicon-list-alt" aria-hidden="true"></span>
<a href="/lists/view/{{id}}">
{{name}}
</a>
</td>
<td>
2016-05-15 09:26:30 +00:00
<code>{{cid}}</code>
</td>
2016-05-15 09:26:30 +00:00
<td class="text-center">
{{subscribers}}
2016-04-04 12:36:30 +00:00
</td>
2017-03-19 12:36:57 +00:00
<td class="text-muted" style="width: 70%;">
2016-05-15 09:26:30 +00:00
{{description}}
2016-04-04 12:36:30 +00:00
</td>
<td>
<a href="/lists/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>