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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/tools-menu.inc (+3 lines)
Lines 37-42 Link Here
37
    [% IF ( CAN_user_tools_edit_patrons ) %]
37
    [% IF ( CAN_user_tools_edit_patrons ) %]
38
    <li><a href="/cgi-bin/koha/tools/modborrowers.pl">Batch patron modification</a></li>
38
    <li><a href="/cgi-bin/koha/tools/modborrowers.pl">Batch patron modification</a></li>
39
    [% END %]
39
    [% END %]
40
    [% IF ( CAN_user_tools_batch_extend_due_dates ) %]
41
    <li><a href="/cgi-bin/koha/tools/batch_extend_due_dates.pl">Batch extend due dates</a></li>
42
    [% END %]
40
    [% IF ( CAN_user_tools_moderate_tags ) %]
43
    [% IF ( CAN_user_tools_moderate_tags ) %]
41
    <li><a href="/cgi-bin/koha/tags/review.pl">Tag moderation</a></li>
44
    <li><a href="/cgi-bin/koha/tags/review.pl">Tag moderation</a></li>
42
    [% END %]
45
    [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt (-3 / +3 lines)
Lines 13-19 Link Here
13
[% Asset.css("css/humanmsg.css") | $raw %]
13
[% Asset.css("css/humanmsg.css") | $raw %]
14
</head>
14
</head>
15
15
16
<body id="tools_batch_record_modification" class="tools">
16
<body id="tools_batch_extend_due_dates" class="tools">
17
    [% INCLUDE 'header.inc' %]
17
    [% INCLUDE 'header.inc' %]
18
    [% INCLUDE 'cat-search.inc' %]
18
    [% INCLUDE 'cat-search.inc' %]
19
19
Lines 128-134 Link Here
128
                                            <tr>
128
                                            <tr>
129
                                                <td><input type="checkbox" name="issue_id" value="[% checkout.issue_id | html %]" /></td>
129
                                                <td><input type="checkbox" name="issue_id" value="[% checkout.issue_id | html %]" /></td>
130
                                                <td>[% checkout.date_due | $KohaDates as_due_date => 1 %]</td>
130
                                                <td>[% checkout.date_due | $KohaDates as_due_date => 1 %]</td>
131
                                                <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblio.biblionumber | uri %]">[% biblio.title | html %]</a></td>
131
                                                <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout.item.biblio.biblionumber | uri %]">[% checkout.item.biblio.title | html %]</a></td>
132
                                                <td>[% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %]</td>
132
                                                <td>[% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %]</td>
133
                                                <td>[% checkout.item.home_branch.branchname | html %]</td>
133
                                                <td>[% checkout.item.home_branch.branchname | html %]</td>
134
                                                <td>[% checkout.issuedate | $KohaDates %]</td>
134
                                                <td>[% checkout.issuedate | $KohaDates %]</td>
Lines 178-184 Link Here
178
                                [% FOR checkout IN checkouts %]
178
                                [% FOR checkout IN checkouts %]
179
                                    <tr>
179
                                    <tr>
180
                                        <td>[% checkout.date_due | $KohaDates as_due_date => 1 %]</td>
180
                                        <td>[% checkout.date_due | $KohaDates as_due_date => 1 %]</td>
181
                                        <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblio.biblionumber | uri %]">[% biblio.title | html %]</a></td>
181
                                        <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout.item.biblio.biblionumber | uri %]">[% checkout.item.biblio.title | html %]</a></td>
182
                                        <td>[% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %]</td>
182
                                        <td>[% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %]</td>
183
                                        <td>[% checkout.item.home_branch.branchname | html %]</td>
183
                                        <td>[% checkout.item.home_branch.branchname | html %]</td>
184
                                        <td>[% checkout.issuedate | $KohaDates %]</td>
184
                                        <td>[% checkout.issuedate | $KohaDates %]</td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/tools-home.tt (-2 / +6 lines)
Lines 15-21 Link Here
15
        <div class="col-sm-4">
15
        <div class="col-sm-4">
16
[% IF ( CAN_user_tools_manage_patron_lists || CAN_user_clubs || CAN_user_tools_moderate_comments || CAN_user_tools_import_patrons
16
[% IF ( CAN_user_tools_manage_patron_lists || CAN_user_clubs || CAN_user_tools_moderate_comments || CAN_user_tools_import_patrons
17
  || CAN_user_tools_edit_notices || CAN_user_tools_edit_notice_status_triggers || CAN_user_tools_label_creator || CAN_user_tools_delete_anonymize_patrons
17
  || CAN_user_tools_edit_notices || CAN_user_tools_edit_notice_status_triggers || CAN_user_tools_label_creator || CAN_user_tools_delete_anonymize_patrons
18
  || CAN_user_tools_edit_patrons || CAN_user_tools_moderate_tags || CAN_user_tools_batch_upload_patron_images ) %]
18
  || CAN_user_tools_edit_patrons || CAN_user_tools_batch_extend_due_dates || CAN_user_tools_moderate_tags || CAN_user_tools_batch_upload_patron_images ) %]
19
<h3>Patrons and circulation</h3>
19
<h3>Patrons and circulation</h3>
20
[% END %]
20
[% END %]
21
<dl>
21
<dl>
Lines 64-69 Link Here
64
    <dd>Modify patrons in batch</dd>
64
    <dd>Modify patrons in batch</dd>
65
    [% END %]
65
    [% END %]
66
66
67
    [% IF ( CAN_user_tools_batch_extend_due_dates ) %]
68
    <dt><a href="/cgi-bin/koha/tools/batch_extend_due_dates.pl">Batch extend due dates</a></dt>
69
    <dd>Modify the due date checkouts in batch</dd>
70
    [% END %]
71
67
    [% IF ( CAN_user_tools_moderate_tags ) %]
72
    [% IF ( CAN_user_tools_moderate_tags ) %]
68
    <dt><a href="/cgi-bin/koha/tags/review.pl">Tags</a> [% IF ( pendingtags ) %]<span class="number_box"><a href="/cgi-bin/koha/tags/review.pl">[% pendingtags | html %]</a></span>[% END %]</dt>
73
    <dt><a href="/cgi-bin/koha/tags/review.pl">Tags</a> [% IF ( pendingtags ) %]<span class="number_box"><a href="/cgi-bin/koha/tags/review.pl">[% pendingtags | html %]</a></span>[% END %]</dt>
69
    <dd>Moderate patron tags</dd>
74
    <dd>Moderate patron tags</dd>
70
- 

Return to bug 24846