2016-04-25 12:39:17 +00:00
<ol class="breadcrumb">
2017-03-07 14:30:56 +00:00
<li><a href="/"> {{ # translate }} Home {{ / translate }} </a></li>
<li><a href="/lists/"> {{ # translate }} Lists {{ / translate }} </a></li>
2016-04-25 12:39:17 +00:00
<li><a href="/lists/view/ {{ list .id }} "> {{ list .name }} </a></li>
2017-03-07 14:30:56 +00:00
<li class="active"> {{ # translate }} Import status {{ / translate }} </li>
2016-04-25 12:39:17 +00:00
</ol>
2017-03-07 14:30:56 +00:00
<h2> {{ list .name }} <small> {{ # translate }} Failed addresses {{ / translate }} </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> {{ # translate }} Back to list {{ / translate }} </a></h2>
2016-04-25 12:39:17 +00:00
<hr>
2016-04-25 13:19:55 +00:00
<div class="well">
2017-03-08 04:17:11 +00:00
{{ # translate }} Role-based addresses like postmaster@example.com are blocked when importing. Subscribers with role-based email addresses can join your list using the subscription form {{ / translate }} (<a href="/subscription/ {{ list .cid }} "> {{ # translate }} see here {{ / translate }} </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>
2017-03-07 14:30:56 +00:00
{{ # translate }} Address {{ / translate }}
2016-04-25 12:39:17 +00:00
</th>
<th>
2017-03-07 14:30:56 +00:00
{{ # translate }} Fail reason {{ / translate }}
2016-04-25 12:39:17 +00:00
</th>
</thead>
{{ # if rows }}
<tbody>
{{ # each rows }}
<tr>
<th scope="row">
{{ in dex }}
</th>
<td>
<a href="mailto: {{ email }} "> {{ email }} </a>
</a>
</td>
<td>
<span class="text-danger"> {{ reason }} </span>
</td>
</tr>
{{ / each }}
</tbody>
{{ / if }}
</table>
</div>