mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
21 lines
482 B
Scheme
21 lines
482 B
Scheme
|
<% if Entries %>
|
||
|
<table class="CMSList UnsubscribedList" summary="Unsubscribed users">
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<td>User name</td>
|
||
|
<td>Unsubscribed on</td>
|
||
|
</tr>
|
||
|
<% control Entries %>
|
||
|
<tr>
|
||
|
<td>$Member.FirstName $Member.Surname</td>
|
||
|
<td>$Record.Created.Long</td>
|
||
|
</tr>
|
||
|
<% end_control %>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<% else %>
|
||
|
<p>
|
||
|
No users have unsubscribed from this newsletter.
|
||
|
</p>
|
||
|
<% end_if %>
|