Lines 30-44
Link Here
|
30 |
|
30 |
|
31 |
[% IF ( QUEUED_MESSAGES ) %] |
31 |
[% IF ( QUEUED_MESSAGES ) %] |
32 |
<table id="noticestable"> |
32 |
<table id="noticestable"> |
33 |
<thead> |
33 |
<thead> |
34 |
<tr> |
34 |
<tr> |
35 |
<th>Notice</th> |
35 |
<th>Notice</th> |
36 |
<th>Type</th> |
36 |
<th>Type</th> |
37 |
<th>Status</th> |
37 |
<th>Status</th> |
38 |
<th>Updated on</th> |
38 |
<th class="title-string">Updated on</th> |
39 |
<th>Time created</th> |
39 |
<th class="title-string">Time created</th> |
40 |
</tr> |
40 |
</tr> |
41 |
</thead> |
41 |
</thead> |
42 |
<tbody> |
42 |
<tbody> |
43 |
[% FOREACH QUEUED_MESSAGE IN QUEUED_MESSAGES %] |
43 |
[% FOREACH QUEUED_MESSAGE IN QUEUED_MESSAGES %] |
44 |
<tr> |
44 |
<tr> |
Lines 74-80
Link Here
|
74 |
</div> |
74 |
</div> |
75 |
[% END %] |
75 |
[% END %] |
76 |
</td> |
76 |
</td> |
77 |
<td><span title="[% QUEUED_MESSAGE.time_status_changed | html %]">[% QUEUED_MESSAGE.updated_on | $KohaDates with_hours => 1 %]</span></td> |
77 |
<td><span title="[% QUEUED_MESSAGE.updated_on | html %]">[% QUEUED_MESSAGE.updated_on | $KohaDates with_hours => 1 %]</span></td> |
78 |
<td><span title="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates with_hours => 1 %]</span></td> |
78 |
<td><span title="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates with_hours => 1 %]</span></td> |
79 |
</tr> |
79 |
</tr> |
80 |
[% END %] |
80 |
[% END %] |
81 |
- |
|
|