mailtrain/views/triggers/triggers.hbs

90 lines
3.2 KiB
Handlebars
Raw Normal View History

<ol class="breadcrumb">
2017-03-07 14:30:56 +00:00
<li><a href="/">{{#translate}}Home{{/translate}}</a></li>
<li class="active">{{#translate}}Automation Triggers{{/translate}}</li>
</ol>
<div class="pull-right">
2017-03-07 14:30:56 +00:00
<a class="btn btn-primary" href="/triggers/create-select" role="button"><i class="glyphicon glyphicon-plus"></i> {{#translate}}Create Trigger{{/translate}}</a>
</div>
2017-03-07 14:30:56 +00:00
<h2>{{#translate}}Automation Triggers{{/translate}}</h2>
<hr>
<div class="table-responsive">
2016-06-24 11:12:21 +00:00
<table class="table table-bordered table-hover data-table display nowrap" width="100%" data-row-sort="0,1,1,0,1,0,1,1,0">
<thead>
<th class="col-md-1">
#
</th>
<th>
2017-03-07 14:30:56 +00:00
{{#translate}}Name{{/translate}}
</th>
<th>
2017-03-07 14:30:56 +00:00
{{#translate}}Status{{/translate}}
</th>
<th>
2017-03-07 14:30:56 +00:00
{{#translate}}Description{{/translate}}
</th>
<th>
2017-03-07 14:30:56 +00:00
{{#translate}}List{{/translate}}
</th>
<th>
2017-03-07 14:30:56 +00:00
{{#translate}}Trigger{{/translate}}
</th>
<th>
2017-03-07 14:30:56 +00:00
{{#translate}}Target Campaign{{/translate}}
</th>
2016-06-24 11:12:21 +00:00
<th>
2017-03-07 14:30:56 +00:00
{{#translate}}Triggered count{{/translate}}
2016-06-24 11:12:21 +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-console" aria-hidden="true"></span> {{name}}
</td>
<td>
{{#if enabled}}
2017-03-07 14:30:56 +00:00
<span class="label label-success">{{#translate}}Enabled{{/translate}}</span>
{{else}}
2017-03-07 14:30:56 +00:00
<span class="label label-default">{{#translate}}Disabled{{/translate}}</span>
{{/if}}
</td>
<td class="text-muted">
{{description}}
</td>
<td class="text-info">
<a href="/lists/view/{{list}}">{{listName}}</a>
</td>
<td class="text-info">
{{{formatted}}}
</td>
<td class="text-info">
<a href="/campaigns/view/{{destCampaign}}">{{destCampaignName}}</a>
</td>
2016-06-24 11:12:21 +00:00
<td>
<a href="/triggers/status/{{id}}">{{count}}</a>
</td>
<td>
<span class="glyphicon glyphicon-wrench" aria-hidden="true"></span>
<a href="/triggers/edit/{{id}}">
2017-03-07 14:30:56 +00:00
{{#translate}}Edit{{/translate}}
</a>
</td>
</tr>
{{/each}}
</tbody>
{{/if}}
</table>
</div>