|
Lines 11-18
Link Here
|
| 11 |
//<![CDATA[ |
11 |
//<![CDATA[ |
| 12 |
$(document).ready(function() { |
12 |
$(document).ready(function() { |
| 13 |
$("#noticestable").dataTable($.extend(true, {}, dataTablesDefaults, { |
13 |
$("#noticestable").dataTable($.extend(true, {}, dataTablesDefaults, { |
| 14 |
"aaSorting": [[ 3, "desc" ]], |
14 |
"aaSorting": [[ 5, "desc" ]], |
| 15 |
"aoColumns": [ null,null,null,{ "sType": "title-string" } ], |
15 |
"aoColumns": [ null,null,null,null,null,{ "sType": "title-string" } ], |
| 16 |
"sPaginationType": "four_button" |
16 |
"sPaginationType": "four_button" |
| 17 |
})); |
17 |
})); |
| 18 |
|
18 |
|
|
Lines 49-54
Link Here
|
| 49 |
<tr> |
49 |
<tr> |
| 50 |
<th>Notice</th> |
50 |
<th>Notice</th> |
| 51 |
<th>Type</th> |
51 |
<th>Type</th> |
|
|
52 |
<th>Sender</th> |
| 53 |
<th>Recipient</th> |
| 52 |
<th>Status</th> |
54 |
<th>Status</th> |
| 53 |
<th>Time</th> |
55 |
<th>Time</th> |
| 54 |
</tr> |
56 |
</tr> |
|
Lines 69-74
Link Here
|
| 69 |
[% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'sms' ) %]sms |
71 |
[% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'sms' ) %]sms |
| 70 |
[% ELSE %][% QUEUED_MESSAGE.message_transport_type %][% END %] |
72 |
[% ELSE %][% QUEUED_MESSAGE.message_transport_type %][% END %] |
| 71 |
</td> |
73 |
</td> |
|
|
74 |
<td>[% QUEUED_MESSAGE.from_address %]</td> |
| 75 |
<td>[% QUEUED_MESSAGE.to_address %]</td> |
| 72 |
<td> |
76 |
<td> |
| 73 |
[% IF ( QUEUED_MESSAGE.status == 'sent' ) %]sent |
77 |
[% IF ( QUEUED_MESSAGE.status == 'sent' ) %]sent |
| 74 |
[% ELSIF ( QUEUED_MESSAGE.status == 'pending' ) %]pending |
78 |
[% ELSIF ( QUEUED_MESSAGE.status == 'pending' ) %]pending |
| 75 |
- |
|
|