|
Lines 16-22
Link Here
|
| 16 |
|
16 |
|
| 17 |
$(".notice").hide(); |
17 |
$(".notice").hide(); |
| 18 |
$(".notice-title").click(function(e){ |
18 |
$(".notice-title").click(function(e){ |
| 19 |
$(this).next(".notice").toggle(); |
19 |
$(this).closest("tr").children().children(".notice").toggle(); |
| 20 |
e.preventDefault(); |
20 |
e.preventDefault(); |
| 21 |
}); |
21 |
}); |
| 22 |
|
22 |
|
|
Lines 70-76
Link Here
|
| 70 |
<td> |
70 |
<td> |
| 71 |
[% IF ( QUEUED_MESSAGE.status == 'sent' ) %]sent |
71 |
[% IF ( QUEUED_MESSAGE.status == 'sent' ) %]sent |
| 72 |
[% ELSIF ( QUEUED_MESSAGE.status == 'pending' ) %]pending |
72 |
[% ELSIF ( QUEUED_MESSAGE.status == 'pending' ) %]pending |
| 73 |
[% ELSIF ( QUEUED_MESSAGE.status == 'failed' ) %]failed |
73 |
[% ELSIF ( QUEUED_MESSAGE.status == 'failed' ) %]failed <div class="notice"><a href="/cgi-bin/koha/members/notices.pl?borrowernumber=[% borrowernumber %]&resendnotice=[% QUEUED_MESSAGE.message_id %]" title="Attempt to resend the notice">Resend</a></div> |
| 74 |
[% ELSIF ( QUEUED_MESSAGE.status == 'deleted' ) %]deleted |
74 |
[% ELSIF ( QUEUED_MESSAGE.status == 'deleted' ) %]deleted |
| 75 |
[% ELSE %][% QUEUED_MESSAGE.status %][% END %] |
75 |
[% ELSE %][% QUEUED_MESSAGE.status %][% END %] |
| 76 |
</td> |
76 |
</td> |