elofgren: Add 'Firstname' and 'Surname' columns to all Sent Status report tables.

(merged from branches/gsoc)


git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@42000 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2007-09-16 01:01:27 +00:00
parent 2c012f3c4e
commit 03423e67be

View File

@ -3,13 +3,18 @@
<table class="CMSList">
<thead>
<tr>
<th class="FirstName">Firstname</th>
<th class="Surname">Surname</th>
<th class="Email">Email</th>
<th>Date</th>
<th>Result</th>
</tr>
</thead>
<tbody>
<% control SentRecipients(Failed) %>
<tr>
<td>$FirstName</td>
<td>$Surname</td>
<td>$Email</td>
<td>$LastEdited</td>
<td>$Result</td>
@ -19,11 +24,16 @@
</tbody>
</table>
<% end_if %>
@TODO: Make bounces actually show up here.
<% if SentRecipients(Bounced) %>
<h2 class="error">Sending to the Following Recipients Bounced</h2>
<table class="CMSList">
<thead>
<tr>
<th class="FirstName">Firstname</th>
<th class="Surname">Surname</th>
<th class="Email">Email</th>
<th>Date</th>
<th>Result</th>
@ -33,6 +43,8 @@
<tbody>
<% control SentRecipients(Bounced) %>
<tr>
<td>$FirstName</td>
<td>$Surname</td>
<td>$Email</td>
<td>$LastEdited</td>
<td>$Result</td>
@ -73,6 +85,8 @@
<table class="CMSList">
<thead>
<tr>
<th class="FirstName">Firstname</th>
<th class="Surname">Surname</th>
<th class="Email">Email</th>
<th>Date</th>
<th>Result</th>
@ -82,6 +96,8 @@
<tbody>
<% control SentRecipients(Sent) %>
<tr id="sent-member-$ID">
<td>$FirstName</td>
<td>$Surname</td>
<td>$Email</td>
<td>$LastEdited</td>
<td>$Result</td>