View | Details | Raw Unified | Return to bug 33260
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt (-2 / +7 lines)
Lines 68-74 Link Here
68
                    <tbody>
68
                    <tbody>
69
                        [% FOREACH QUEUED_MESSAGE IN QUEUED_MESSAGES %]
69
                        [% FOREACH QUEUED_MESSAGE IN QUEUED_MESSAGES %]
70
                            <tr>
70
                            <tr>
71
                                <td><input type="checkbox" name="message_ids" value="[% QUEUED_MESSAGE.message_id | html %]" [% IF QUEUED_MESSAGE.status == 'pending' %]disabled="disabled"[% END %] /></td>
71
                                <td>
72
                                    [% IF QUEUED_MESSAGE.status == 'pending' %]
73
                                        <input type="checkbox" name="message_ids" value="[% QUEUED_MESSAGE.message_id | html %]" disabled="disabled" />
74
                                    [% ELSE %]
75
                                        <input type="checkbox" name="message_ids" value="[% QUEUED_MESSAGE.message_id | html %]" />
76
                                    [% END %]
77
                                </td>
72
                                <td data-order="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates  with_hours => 1 %]</td>
78
                                <td data-order="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates  with_hours => 1 %]</td>
73
                                <td>
79
                                <td>
74
                                    <a
80
                                    <a
75
- 

Return to bug 33260