Bug 16522: (follow-up) MARC display templates and get_marc_host fixes
[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 ) %]
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         </ul>
41         [% END %]
42
43         [% 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 ) %]
44         <h5>Batch editing</h5>
45         <ul>
46             [% IF ( CAN_user_tools_items_batchmod ) %]
47             <li>
48                 <a href="/cgi-bin/koha/tools/batchMod.pl">Batch item modification</a>
49             </li>
50             [% END %]
51             [% IF ( CAN_user_tools_items_batchdel ) %]
52             <li>
53                 <a href="/cgi-bin/koha/tools/batchMod.pl?del=1">Batch item deletion</a>
54             </li>
55             [% END %]
56             [% IF CAN_user_tools_records_batchmod %]
57             <li>
58                 <a href="/cgi-bin/koha/tools/batch_record_modification.pl">Batch record modification</a>
59             </li>
60             [% END %]
61             [% IF CAN_user_tools_records_batchdel %]
62             <li>
63                 <a href="/cgi-bin/koha/tools/batch_delete_records.pl">Batch record deletion</a>
64             </li>
65             [% END %]
66             [% IF ( CAN_user_tools_marc_modification_templates ) %]
67             <li>
68                 <a href="/cgi-bin/koha/tools/marc_modification_templates.pl">MARC modification templates</a>
69             </li>
70             [% END %]
71         </ul>
72         [% END %]
73
74         [% IF ( CAN_user_tools_items_batchmod || ( CAN_user_stockrotation_manage_rotas && Koha.Preference('StockRotation') ) ) %]
75         <h5>Automation</h5>
76         <ul>
77             [% IF ( CAN_user_tools_items_batchmod ) %]
78             <li>
79                 <a href="/cgi-bin/koha/tools/automatic_item_modification_by_age.pl">Item modifications by age</a>
80             </li>
81             [% END %]
82             [% IF ( CAN_user_stockrotation_manage_rotas && Koha.Preference('StockRotation') ) %]
83             <li>
84                 <a href="/cgi-bin/koha/tools/stockrotation.pl">Stock rotation</a>
85             </li>
86             [% END %]
87         </ul>
88         [% END %]
89
90         [% IF ( CAN_user_tools_label_creator || CAN_user_tools_upload_local_cover_images ) %]
91         <h5>Tools</h5>
92         <ul>
93             [% IF ( CAN_user_tools_label_creator ) %]
94             <li>
95                 <a href="/cgi-bin/koha/labels/label-home.pl">Label creator</a>
96             </li>
97             <li>
98                 <a href="/cgi-bin/koha/labels/barcode-print.pl">Barcode image generator</a>
99             </li>
100             <li>
101                 <a href="/cgi-bin/koha/labels/spinelabel-home.pl">Quick spine label creator</a>
102             </li>
103             [% END %]
104
105             [% IF ( CAN_user_tools_upload_local_cover_images ) %]
106             <li>
107                 <a href="/cgi-bin/koha/tools/upload-cover-image.pl">Upload local cover image</a>
108             </li>
109             [% END %]
110         </ul>
111         [% END %]
112
113         [% IF ( CAN_user_parameters ) %]
114         <h5>Administration</h5>
115         <ul>
116             [% IF ( CAN_user_parameters_manage_sysprefs ) %]
117             <li>
118                 <a class="circ-button" href="/cgi-bin/koha/admin/preferences.pl?tab=cataloguing">Preferences</a>
119             </li>
120             [% END %]
121             <li>
122                 <a class="circ-button" href="/cgi-bin/koha/admin/admin-home.pl">Configuration</a>
123             </li>
124         </ul>
125         [% END %]
126
127     </div>
128 </div>