mailtrain/views/lists/subscription/import-failed.hbs

49 lines
1.6 KiB
Handlebars
Raw Normal View History

2016-04-25 12:39:17 +00:00
<ol class="breadcrumb">
<li><a href="/">Home</a></li>
<li><a href="/lists/">Lists</a></li>
<li><a href="/lists/view/{{list.id}}">{{list.name}}</a></li>
<li class="active">Import status</li>
</ol>
<h2>{{list.name}} <small>Failed addresses</small> <a class="btn btn-default btn-xs" href="/lists/view/{{list.id}}" role="button"><span class="glyphicon glyphicon-arrow-left" aria-hidden="true"></span> Back to list</a></h2>
<hr>
2016-04-25 13:19:55 +00:00
<div class="well">
Role-based addresses like <em><strong>postmaster</strong>@example.com</em> are blocked when importing. Subscribers with role-based email addresses can join your list using the <a href="/subscription/{{list.cid}}">subscription form</a>.
2016-04-25 13:19:55 +00:00
</div>
2016-04-25 12:39:17 +00:00
<div class="table-responsive">
<table class="table table-bordered table-hover display nowrap" width="100%">
<thead>
<th class="col-md-1">
#
</th>
<th>
Address
</th>
<th>
Fail reason
</th>
</thead>
{{#if rows}}
<tbody>
{{#each rows}}
<tr>
<th scope="row">
{{index}}
</th>
<td>
<a href="mailto:{{email}}">{{email}}</a>
</a>
</td>
<td>
<span class="text-danger">{{reason}}</span>
</td>
</tr>
{{/each}}
</tbody>
{{/if}}
</table>
</div>