2016-06-03 10:15:33 +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}}Automation Triggers{{/translate}}</li>
|
2016-06-03 10:15:33 +00:00
|
|
|
</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>
|
2016-06-03 10:15:33 +00:00
|
|
|
</div>
|
|
|
|
|
2017-03-07 14:30:56 +00:00
|
|
|
<h2>{{#translate}}Automation Triggers{{/translate}}</h2>
|
2016-06-03 10:15:33 +00:00
|
|
|
|
|
|
|
<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">
|
2016-06-03 10:15:33 +00:00
|
|
|
<thead>
|
|
|
|
<th class="col-md-1">
|
|
|
|
#
|
|
|
|
</th>
|
|
|
|
<th>
|
2017-03-07 14:30:56 +00:00
|
|
|
{{#translate}}Name{{/translate}}
|
2016-06-03 10:15:33 +00:00
|
|
|
</th>
|
|
|
|
<th>
|
2017-03-07 14:30:56 +00:00
|
|
|
{{#translate}}Status{{/translate}}
|
2016-06-03 10:15:33 +00:00
|
|
|
</th>
|
|
|
|
<th>
|
2017-03-07 14:30:56 +00:00
|
|
|
{{#translate}}Description{{/translate}}
|
2016-06-03 10:15:33 +00:00
|
|
|
</th>
|
|
|
|
<th>
|
2017-03-07 14:30:56 +00:00
|
|
|
{{#translate}}List{{/translate}}
|
2016-06-03 10:15:33 +00:00
|
|
|
</th>
|
|
|
|
<th>
|
2017-03-07 14:30:56 +00:00
|
|
|
{{#translate}}Trigger{{/translate}}
|
2016-06-03 10:15:33 +00:00
|
|
|
</th>
|
|
|
|
<th>
|
2017-03-07 14:30:56 +00:00
|
|
|
{{#translate}}Target Campaign{{/translate}}
|
2016-06-03 10:15:33 +00:00
|
|
|
</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>
|
2016-06-03 10:15:33 +00:00
|
|
|
<th class="col-md-1">
|
|
|
|
|
|
|
|
</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>
|
2016-06-03 10:15:33 +00:00
|
|
|
{{else}}
|
2017-03-07 14:30:56 +00:00
|
|
|
<span class="label label-default">{{#translate}}Disabled{{/translate}}</span>
|
2016-06-03 10:15:33 +00:00
|
|
|
{{/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>
|
2016-06-03 10:15:33 +00:00
|
|
|
<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}}
|
2016-06-03 10:15:33 +00:00
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{/each}}
|
|
|
|
</tbody>
|
|
|
|
{{/if}}
|
|
|
|
</table>
|
|
|
|
</div>
|