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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-2 / +2 lines)
Lines 47-52 var relatives_borrowernumbers = new Array(); Link Here
47
47
48
var MSG_ADD_MESSAGE = _("Add a new message");
48
var MSG_ADD_MESSAGE = _("Add a new message");
49
var MSG_EXPORT_SELECT_CHECKOUTS = _("You must select checkout(s) to export");
49
var MSG_EXPORT_SELECT_CHECKOUTS = _("You must select checkout(s) to export");
50
var MSG_CONFIRM_DELETE_MESSAGE = _("Are you sure you want to delete this message? This cannot be undone.");
50
51
51
columns_settings = [% ColumnsSettings.GetColumns( 'circ', 'circulation', 'issues-table', 'json' ) %]
52
columns_settings = [% ColumnsSettings.GetColumns( 'circ', 'circulation', 'issues-table', 'json' ) %]
52
53
Lines 844-850 No patron matched <span class="ex">[% message %]</span> Link Here
844
                        <i>"[% message.message %]"</i>
845
                        <i>"[% message.message %]"</i>
845
                    </span>
846
                    </span>
846
                    [% IF message.branchcode == branch OR Koha.Preference('AllowAllMessageDeletion') %]
847
                    [% IF message.branchcode == branch OR Koha.Preference('AllowAllMessageDeletion') %]
847
                        <a href="/cgi-bin/koha/circ/del_message.pl?message_id=[% message.message_id %]&amp;borrowernumber=[% message.borrowernumber %]">[Delete]</a>
848
                        <a href="/cgi-bin/koha/circ/del_message.pl?message_id=[% message.message_id %]&amp;borrowernumber=[% message.borrowernumber %]" onclick="return confirm(MSG_CONFIRM_DELETE_MESSAGE);">[Delete]</a>
848
                    [% END %]
849
                    [% END %]
849
                </li>
850
                </li>
850
            [% END %]
851
            [% END %]
851
- 

Return to bug 16183