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 73-79 Link Here
73
                    <tbody>
73
                    <tbody>
74
                        [% FOREACH QUEUED_MESSAGE IN QUEUED_MESSAGES %]
74
                        [% FOREACH QUEUED_MESSAGE IN QUEUED_MESSAGES %]
75
                            <tr>
75
                            <tr>
76
                                <td><input type="checkbox" name="message_ids" value="[% QUEUED_MESSAGE.message_id | html %]" [% IF QUEUED_MESSAGE.status == 'pending' %]disabled="disabled"[% END %] /></td>
76
                                <td>
77
                                    [% IF QUEUED_MESSAGE.status == 'pending' %]
78
                                        <input type="checkbox" name="message_ids" value="[% QUEUED_MESSAGE.message_id | html %]" disabled="disabled" />
79
                                    [% ELSE %]
80
                                        <input type="checkbox" name="message_ids" value="[% QUEUED_MESSAGE.message_id | html %]" />
81
                                    [% END %]
82
                                </td>
77
                                <td data-order="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates  with_hours => 1 %]</td>
83
                                <td data-order="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates  with_hours => 1 %]</td>
78
                                <td>
84
                                <td>
79
                                    <a
85
                                    <a
80
- 

Return to bug 33260