Bug 35307: Add a hidden input for expired holds
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / cat-menu.inc
1 [% USE Koha %]
2 <div id="navmenu">
3     <div id="navmenulist">
4
5         [% IF ( CAN_user_tools_stage_marc_import || CAN_user_tools_manage_staged_marc ) %]
6         <h5>Import</h5>
7         <ul>
8             [% IF ( CAN_user_tools_stage_marc_import ) %]
9             <li>
10                 <a href="/cgi-bin/koha/tools/stage-marc-import.pl">Stage records for import</a>
11             </li>
12             [% END %]
13             [% IF ( CAN_user_tools_manage_staged_marc ) %]
14             <li>
15                 <a href="/cgi-bin/koha/tools/manage-marc-import.pl">Manage staged records</a>
16             </li>
17             [% END %]
18         </ul>
19         [% END %]
20
21         [% IF ( CAN_user_tools_export_catalog ) %]
22         <h5>Export</h5>
23         <ul>
24             [% IF ( CAN_user_tools_export_catalog ) %]
25             <li>
26                 <a href="/cgi-bin/koha/tools/export.pl">Export catalog data</a>
27             </li>
28             [% END %]
29         </ul>
30         [% END %]
31
32         [% IF ( CAN_user_tools_inventory || ( ( Koha.Preference('OpacCatalogConcerns') || Koha.Preference('CatalogConcerns') ) && CAN_user_editcatalogue_edit_catalogue ) ) %]
33         <h5>Reports</h5>
34         <ul>
35             [% IF ( CAN_user_tools_inventory ) %]
36             <li>
37                 <a href="/cgi-bin/koha/tools/inventory.pl">Inventory</a>
38             </li>
39             [% END %]
40             [% IF ( Koha.Preference('OpacCatalogConcerns') || Koha.Preference('CatalogConcerns') ) && CAN_user_editcatalogue_edit_catalogue %]
41             <li>
42                 <a href="/cgi-bin/koha/cataloguing/concerns.pl">Catalog concerns</a>
43             </li>
44             [% END %]
45         </ul>
46         [% END %]
47
48         [% IF ( CAN_user_tools_items_batchmod || CAN_user_tools_items_batchdel || CAN_user_tools_records_batchmod || CAN_user_tools_records_batchdel || CAN_user_tools_marc_modification_templates ) %]
49         <h5>Batch editing</h5>
50         <ul>
51             [% IF ( CAN_user_tools_items_batchmod ) %]
52             <li>
53                 <a href="/cgi-bin/koha/tools/batchMod.pl">Batch item modification</a>
54             </li>
55             [% END %]
56             [% IF ( CAN_user_tools_items_batchdel ) %]
57             <li>
58                 <a href="/cgi-bin/koha/tools/batchMod.pl?del=1">Batch item deletion</a>
59             </li>
60             [% END %]
61             [% IF CAN_user_tools_records_batchmod %]
62             <li>
63                 <a href="/cgi-bin/koha/tools/batch_record_modification.pl">Batch record modification</a>
64             </li>
65             [% END %]
66             [% IF CAN_user_tools_records_batchdel %]
67             <li>
68                 <a href="/cgi-bin/koha/tools/batch_delete_records.pl">Batch record deletion</a>
69             </li>
70             [% END %]
71             [% IF ( CAN_user_tools_marc_modification_templates ) %]
72             <li>
73                 <a href="/cgi-bin/koha/tools/marc_modification_templates.pl">MARC modification templates</a>
74             </li>
75             [% END %]
76         </ul>
77         [% END %]
78
79         [% IF ( CAN_user_tools_items_batchmod || ( CAN_user_stockrotation_manage_rotas && Koha.Preference('StockRotation') ) ) %]
80         <h5>Automation</h5>
81         <ul>
82             [% IF ( CAN_user_tools_items_batchmod ) %]
83             <li>
84                 <a href="/cgi-bin/koha/tools/automatic_item_modification_by_age.pl">Item modifications by age</a>
85             </li>
86             [% END %]
87             [% IF ( CAN_user_stockrotation_manage_rotas && Koha.Preference('StockRotation') ) %]
88             <li>
89                 <a href="/cgi-bin/koha/tools/stockrotation.pl">Stock rotation</a>
90             </li>
91             [% END %]
92         </ul>
93         [% END %]
94
95         [% IF ( CAN_user_tools_label_creator || CAN_user_tools_upload_local_cover_images ) %]
96         <h5>Tools</h5>
97         <ul>
98             [% IF ( CAN_user_tools_label_creator ) %]
99             <li>
100                 <a href="/cgi-bin/koha/labels/label-home.pl">Label creator</a>
101             </li>
102             <li>
103                 <a href="/cgi-bin/koha/labels/barcode-print.pl">Barcode image generator</a>
104             </li>
105             <li>
106                 <a href="/cgi-bin/koha/labels/spinelabel-home.pl">Quick spine label creator</a>
107             </li>
108             [% END %]
109
110             [% IF ( CAN_user_tools_upload_local_cover_images ) %]
111             <li>
112                 <a href="/cgi-bin/koha/tools/upload-cover-image.pl">Upload local cover image</a>
113             </li>
114             [% END %]
115         </ul>
116         [% END %]
117
118         [% IF ( CAN_user_parameters ) %]
119         <h5>Administration</h5>
120         <ul>
121             [% IF ( CAN_user_parameters_manage_sysprefs ) %]
122             <li>
123                 <a class="circ-button" href="/cgi-bin/koha/admin/preferences.pl?tab=cataloguing">Preferences</a>
124             </li>
125             [% END %]
126             <li>
127                 <a class="circ-button" href="/cgi-bin/koha/admin/admin-home.pl">Configuration</a>
128             </li>
129         </ul>
130         [% END %]
131
132     </div>
133 </div>