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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron_messages.inc (+4 lines)
Lines 310-316 Link Here
310
                        <em>"[% patron_message.message | html %]"</em>
310
                        <em>"[% patron_message.message | html %]"</em>
311
                    </span>
311
                    </span>
312
                    [% IF patron_message.branchcode == Branches.GetLoggedInBranchcode OR Koha.Preference('AllowAllMessageDeletion') %]
312
                    [% IF patron_message.branchcode == Branches.GetLoggedInBranchcode OR Koha.Preference('AllowAllMessageDeletion') %]
313
                        [% IF moremember %]
313
                        <a class="btn btn-link delete_message" href="/cgi-bin/koha/circ/del_message.pl?message_id=[% patron_message.message_id | html %]&amp;borrowernumber=[% patron_message.borrowernumber | html %]&amp;from=moremember"><i class="fa fa-trash"></i> Delete</a>
314
                        <a class="btn btn-link delete_message" href="/cgi-bin/koha/circ/del_message.pl?message_id=[% patron_message.message_id | html %]&amp;borrowernumber=[% patron_message.borrowernumber | html %]&amp;from=moremember"><i class="fa fa-trash"></i> Delete</a>
315
                        [% ELSE %]
316
                        <a class="btn btn-link delete_message" href="/cgi-bin/koha/circ/del_message.pl?message_id=[% patron_message.message_id | html %]&amp;borrowernumber=[% patron_message.borrowernumber | html %]"><i class="fa fa-trash"></i> Delete</a>
317
                        [% END %]
314
                    [% END %]
318
                    [% END %]
315
                </li>
319
                </li>
316
            [% END %]
320
            [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-2 / +1 lines)
Lines 92-98 Link Here
92
                        [% END %]
92
                        [% END %]
93
93
94
                        <div id="patron_messages" class="circmessage attention">
94
                        <div id="patron_messages" class="circmessage attention">
95
                            [% INCLUDE 'patron_messages.inc' %]
95
                            [% INCLUDE 'patron_messages.inc' moremember = 1 %]
96
                        </div>
96
                        </div>
97
97
98
                        <h1>[% INCLUDE 'patron-title.inc' no_html = 1 %]</h1>
98
                        <h1>[% INCLUDE 'patron-title.inc' no_html = 1 %]</h1>
99
- 

Return to bug 31486