|
Lines 72-78
Link Here
|
| 72 |
<tbody> |
72 |
<tbody> |
| 73 |
[% FOREACH QUEUED_MESSAGE IN QUEUED_MESSAGES %] |
73 |
[% FOREACH QUEUED_MESSAGE IN QUEUED_MESSAGES %] |
| 74 |
<tr> |
74 |
<tr> |
| 75 |
<td><input type="checkbox" name="message_ids" value="[% QUEUED_MESSAGE.message_id | html %]" [% IF QUEUED_MESSAGE.status == 'pending' %]disabled="disabled"[% END %]></td> |
75 |
<td> |
|
|
76 |
[% IF QUEUED_MESSAGE.status == 'pending' %] |
| 77 |
<input type="checkbox" name="message_ids" value="[% QUEUED_MESSAGE.message_id | html %]" disabled="disabled"> |
| 78 |
[% ELSE %] |
| 79 |
<input type="checkbox" name="message_ids" value="[% QUEUED_MESSAGE.message_id | html %]"> |
| 80 |
[% END %] |
| 81 |
</td> |
| 76 |
<td data-order="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates with_hours => 1 %]</td> |
82 |
<td data-order="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates with_hours => 1 %]</td> |
| 77 |
<td> |
83 |
<td> |
| 78 |
<a class="notice-title" data-noticeid="[% QUEUED_MESSAGE.message_id | html %]" data-status="[% QUEUED_MESSAGE.status | html %]" data-borrowernumber="[% borrowernumber | html %]" href="/cgi-bin/koha/members/notices.pl?borrowernumber=[% borrowernumber | uri %]&noticeid=[% QUEUED_MESSAGE.message_id | uri %]">[% QUEUED_MESSAGE.subject | html %]</a> |
84 |
<a class="notice-title" data-noticeid="[% QUEUED_MESSAGE.message_id | html %]" data-status="[% QUEUED_MESSAGE.status | html %]" data-borrowernumber="[% borrowernumber | html %]" href="/cgi-bin/koha/members/notices.pl?borrowernumber=[% borrowernumber | uri %]&noticeid=[% QUEUED_MESSAGE.message_id | uri %]">[% QUEUED_MESSAGE.subject | html %]</a> |
| 79 |
- |
|
|