Bug 17702: Add UI to manage account credit types
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / admin-home.tt
1 [% USE Koha %]
2 [% SET footerjs = 1 %]
3 [% INCLUDE 'doc-head-open.inc' %]
4 <title>Koha &rsaquo; Administration</title>
5 [% INCLUDE 'doc-head-close.inc' %]
6 </head>
7 <body id="admin_admin-home" class="admin">
8 [% INCLUDE 'header.inc' %]
9 [% INCLUDE 'prefs-admin-search.inc' %]
10
11 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; Administration</div>
12
13 <div class="main container-fluid">
14     <div class="row">
15         <div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
16             [% IF ( CAN_user_parameters_manage_mana ) %]
17                 [% IF ( Koha.Preference('Mana') == 1) && !mana_url %]
18                     <div class="dialog message">
19                         <h4>The Mana Knowledge Base feature is enabled but not configured.</h4>
20                         <p>This feature allows you to retrieve and share data (subscription patterns and reports) with other Koha libraries.</p>
21                         <p>
22                             Ask your system administrator to configure this feature, or remove this note by <a href=/cgi-bin/koha/admin/share_content.pl>disabling the 'Mana' system preference</a>.
23                         </p>
24                     </div>
25                 [% END %]
26                 [% IF ( Koha.Preference('Mana') == 2 ) %]
27                     <div class="dialog message">
28                         <h4>Share content with Mana KB?</h4>
29                         <p> You haven't decided if you want to activate Mana Knowledge Base. <a href=/cgi-bin/koha/admin/share_content.pl>Change your Mana KB settings</a>.</p>
30                     </div>
31                 [% END %]
32             [% END %]
33             [% IF ( CAN_user_parameters_manage_usage_stats ) %]
34                 [% IF ( Koha.Preference('UsageStats') == 2 ) %]
35                     <div class="dialog message">
36                         <h4>Share anonymous usage statistics with the Koha community?</h4>
37                         <p> You haven't decided if you want to activate usage statistic sharing in Koha yet. <a href=/cgi-bin/koha/admin/usage_statistics.pl>Change your Hea settings</a>.</p>
38                         <p> This feature gives the Koha developers valuable information regarding how Koha is being used and helps to drive decisions during the development cycle</p>
39                     </div>
40                 [% END %]
41             [% END %]
42         <h1>Koha administration</h1>
43         <div class="row">
44             <div class="col-md-6 sysprefs">
45             [% IF ( CAN_user_parameters_manage_sysprefs ) %]
46                 <form action="/cgi-bin/koha/admin/preferences.pl" method="post">
47                 <fieldset>
48                     <h4><a href="/cgi-bin/koha/admin/preferences.pl">Global system preferences</a></h4>
49                     <p>Manage global system preferences like MARC flavor, date format, administrator email, and templates.</p>
50                     <input type="hidden" name="op" value="search" />
51                     <input type="text" name="searchfield" value="[% searchfield | html %]" />
52                     <input type="submit" name="ok" class="submit" value="Search" />
53                 </fieldset>
54                 </form>
55             [% END %]
56
57             [% IF ( CAN_user_parameters_manage_libraries || CAN_user_parameters_manage_itemtypes || CAN_user_parameters_manage_auth_values ) %]
58                 <div class="hint"><h4>Hint:</h4><p>Configure these parameters in the order they appear.</p></div>
59                 <h3>Basic parameters</h3>
60                 <dl>
61                     [% IF ( CAN_user_parameters_manage_libraries ) %]
62                         <dt><a href="/cgi-bin/koha/admin/branches.pl">Libraries</a></dt>
63                         <dd>Define libraries.</dd>
64                         <dt><a href="/cgi-bin/koha/admin/library_groups.pl">Library groups</a></dt>
65                         <dd>Define hierarchical library groups.</dd>
66                     [% END %]
67                     [% IF ( CAN_user_parameters_manage_itemtypes ) %]
68                         <dt><a href="/cgi-bin/koha/admin/itemtypes.pl">Item types</a></dt>
69                         <dd>Define item types used for circulation rules.</dd>
70                     [% END %]
71                     [% IF ( CAN_user_parameters_manage_auth_values ) %]
72                         <dt><a href="/cgi-bin/koha/admin/authorised_values.pl">Authorized values</a></dt>
73                         <dd>Define categories and authorized values for them.</dd>
74                     [% END %]
75                 </dl>
76             [% END %]
77
78             [% IF ( CAN_user_parameters_manage_patron_categories || CAN_user_parameters_manage_circ_rules || CAN_user_parameters_manage_patron_attributes || CAN_user_parameters_manage_transfers || CAN_user_parameters_manage_item_circ_alerts || CAN_user_parameters_manage_cities ) %]
79                 <h3>Patrons and circulation</h3>
80                 <dl>
81                 [% IF ( CAN_user_parameters_manage_patron_categories ) %]
82                     <dt><a href="/cgi-bin/koha/admin/categories.pl">Patron categories</a></dt>
83                     <dd>Define patron categories.</dd>
84                 [% END %]
85                 [% IF CAN_user_parameters_manage_circ_rules %]
86                     <dt><a href="/cgi-bin/koha/admin/smart-rules.pl">Circulation and fines rules</a></dt>
87                     <dd>Define circulation and fines rules for combinations of libraries, patron categories, and item types</dd>
88                 [% END %]
89                 [% IF ( CAN_user_parameters_manage_patron_attributes ) %]
90                     <dt><a href="/cgi-bin/koha/admin/patron-attr-types.pl">Patron attribute types</a></dt>
91                     <dd>Define extended attributes (identifiers and statistical categories) for patron records</dd>
92                 [% END %]
93                 [% IF ( CAN_user_parameters_manage_transfers ) %]
94                     <dt><a href="/cgi-bin/koha/admin/branch_transfer_limits.pl">Library transfer limits</a></dt>
95                     <dd>Limit the ability to transfer items between libraries based on the library sending, the library receiving, and the item type involved. These rules only go into effect if the preference UseBranchTransferLimits is set to ON.</dd>
96                     <dt><a href="/cgi-bin/koha/admin/transport-cost-matrix.pl">Transport cost matrix</a></dt>
97                     <dd>Define transport costs between branches</dd>
98                 [% END %]
99                 [% IF ( CAN_user_parameters_manage_item_circ_alerts ) %]
100                     <dt><a href="/cgi-bin/koha/admin/item_circulation_alerts.pl">Item circulation alerts</a></dt>
101                     <dd>Define rules for check-in and checkout notifications for combinations of libraries, patron categories, and item types</dd>
102                 [% END %]
103                 [% IF ( CAN_user_parameters_manage_cities ) %]
104                     <dt><a href="/cgi-bin/koha/admin/cities.pl">Cities and towns</a></dt>
105                     <dd>Define cities and towns that your patrons live in.</dd>
106                 [% END %]
107                 </dl>
108             [% END %]
109
110             [% IF ( CAN_user_parameters_manage_accounts || ( Koha.Preference('UseCashRegisters') && CAN_user_parameters_manage_cash_registers ) ) %]
111                 <h3>Accounting</h3>
112                 <dl>
113                 [% IF ( CAN_user_parameters_manage_accounts ) %]
114                     <dt><a href="/cgi-bin/koha/admin/debit_types.pl">Debit types</a></dt>
115                     <dd>Define debit types.</dd>
116                     <dt><a href="/cgi-bin/koha/admin/credit_types.pl">Credit types</a></dt>
117                     <dd>Define credit types.</dd>
118                 [% END %]
119                 [% IF ( Koha.Preference('UseCashRegisters') && CAN_user_parameters_manage_cash_registers ) %]
120                     <dt><a href="/cgi-bin/koha/admin/cash_registers.pl">Cash registers</a></dt>
121                     <dd>Define cash registers</dd>
122                 [% END %]
123                 </dl>
124             [% END %]
125
126             [% IF CAN_user_plugins && plugins_enabled %]
127                 <h3>Plugins</h3>
128                 <dl>
129                     <dt><a href="/cgi-bin/koha/plugins/plugins-home.pl">Manage plugins</a></dt>
130                     <dd>View, manage, configure and run plugins.</dd>
131                 </dl>
132             [% END %]
133             </div>
134
135             <div class="col-md-6 sysprefs">
136             [% IF ( CAN_user_parameters_manage_marc_frameworks || CAN_user_parameters_manage_classifications || CAN_user_parameters_manage_matching_rules || CAN_user_parameters_manage_oai_sets || CAN_user_parameters_manage_item_search_fields || (Koha.Preference('SearchEngine') == 'Elasticsearch' && CAN_user_parameters_manage_search_engine_config) ) %]
137                 <h3>Catalog</h3>
138                 <dl>
139                     [% IF ( CAN_user_parameters_manage_marc_frameworks ) %]
140                         <dt><a href="/cgi-bin/koha/admin/biblio_framework.pl">MARC bibliographic framework</a></dt>
141                         <dd>Create and manage Bibliographic frameworks that define the characteristics of your MARC Records (field and subfield definitions) as well as templates for the MARC editor.</dd>
142                         <dt><a href="/cgi-bin/koha/admin/koha2marclinks.pl">Koha to MARC mapping</a></dt>
143                         <dd>Define the mapping between the Koha transactional database (SQL) and the MARC Bibliographic records.</dd>
144                     [% END %]
145                     [% IF ( CAN_user_parameters_manage_marc_frameworks ) %]
146                         <dt><a href="/cgi-bin/koha/admin/checkmarc.pl">MARC Bibliographic framework test</a></dt>
147                         <dd>Checks the MARC structure. If you change your MARC Bibliographic framework it's recommended that you run this tool to test for errors in your definition.</dd>
148                         <dt><a href="/cgi-bin/koha/admin/authtypes.pl">Authority types</a></dt>
149                         <dd>Create and manage Authorities frameworks that define the characteristics of your MARC Records (field and subfield definitions).</dd>
150                     [% END %]
151                     [% IF ( CAN_user_parameters_manage_classifications ) %]
152                         <dt><a href="/cgi-bin/koha/admin/classsources.pl">Classification sources</a></dt>
153                         <dd>Define classification sources (i.e. call number schemes) used by your collection.  Also define filing rules used for sorting call numbers and splitting rules for splitting them.</dd>
154                     [% END %]
155                     [% IF ( CAN_user_parameters_manage_matching_rules ) %]
156                         <dt><a href="/cgi-bin/koha/admin/matching-rules.pl">Record matching rules</a></dt>
157                         <dd>Manage rules for automatically matching MARC records during record imports.</dd>
158                     [% END %]
159                     [% IF ( CAN_user_parameters_manage_oai_sets ) %]
160                         <dt><a href="/cgi-bin/koha/admin/oai_sets.pl">OAI sets configuration</a></dt>
161                         <dd>Manage OAI Sets</dd>
162                     [% END %]
163                     [% IF ( CAN_user_parameters_manage_item_search_fields ) %]
164                         <dt><a href="/cgi-bin/koha/admin/items_search_fields.pl">Item search fields</a></dt>
165                         <dd>Manage custom fields for item search.</dd>
166                     [% END %]
167                     [% IF ( Koha.Preference('SearchEngine') == 'Elasticsearch' && CAN_user_parameters_manage_search_engine_config ) %]
168                         <dt><a href="/cgi-bin/koha/admin/searchengine/elasticsearch/mappings.pl">Search engine configuration</a></dt>
169                         <dd>Manage indexes, facets, and their mappings to MARC fields and subfields.</dd>
170                     [% END %]
171                 </dl>
172             [% END %]
173
174             [% IF ( CAN_user_acquisition_currencies_manage || CAN_user_acquisition_period_manage || CAN_user_acquisition_budget_manage || CAN_user_acquisition_edi_manage ) %]
175                 <h3>Acquisition parameters</h3>
176                 <dl>
177                     [% IF ( CAN_user_acquisition_currencies_manage ) %]
178                         <dt><a href="/cgi-bin/koha/admin/currency.pl">Currencies and exchange rates</a></dt>
179                         <dd>Define currencies and exchange rates used for acquisitions.</dd>
180                     [% END %]
181                     [% IF ( CAN_user_acquisition_period_manage ) %]
182                         <dt><a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">Budgets</a></dt>
183                         <dd>Define your budgets</dd>
184                     [% END %]
185                     [% IF ( CAN_user_acquisition_budget_manage ) %]
186                         <dt><a href="/cgi-bin/koha/admin/aqbudgets.pl">Funds</a></dt>
187                         <dd>Define funds within your budgets</dd>
188                     [% END %]
189                     [% IF ( CAN_user_acquisition_edi_manage ) %]
190                         <dt><a href="/cgi-bin/koha/admin/edi_accounts.pl">EDI accounts</a></dt>
191                         <dd>Manage vendor EDI accounts for import/export</dd>
192                         <dt><a href="/cgi-bin/koha/admin/edi_ean_accounts.pl">Library EANs</a></dt>
193                         <dd>Manage library EDI EANs</dd>
194                     [% END %]
195                 </dl>
196             [% END %]
197
198             [% IF ( ( CAN_user_parameters_manage_search_targets || CAN_user_parameters_manage_didyoumean || CAN_user_parameters_manage_column_config || CAN_user_parameters_manage_audio_alerts || CAN_user_parameters_manage_sms_providers && Koha.Preference('SMSSendDriver') == 'Email' ) || CAN_user_parameters_manage_usage_stats || CAN_user_parameters_manage_additional_fields || CAN_user_parameters_manage_mana || (Koha.Preference('EnableAdvancedCatalogingEditor') && CAN_user_parameters_manage_keyboard_shortcuts) ) %]
199                 <h3>Additional parameters</h3>
200                 <dl>
201                         <!-- <dt><a href="/cgi-bin/koha/admin/printers.pl">Network Printers</a></dt>
202                         <dd>Printers (UNIX paths).</dd> -->
203                     [% IF ( CAN_user_parameters_manage_search_targets ) %]
204                         <dt><a href="/cgi-bin/koha/admin/z3950servers.pl">Z39.50/SRU servers</a></dt>
205                         <dd>Define which external servers to query for MARC data.</dd>
206                     [% END %]
207                     [% IF ( CAN_user_parameters_manage_didyoumean ) %]
208                         <dt><a href="/cgi-bin/koha/admin/didyoumean.pl">Did you mean?</a></dt>
209                         <dd>Choose which plugins to use to suggest searches to patrons and staff.</dd>
210                     [% END %]
211                     [% IF ( CAN_user_parameters_manage_column_config ) %]
212                         <dt><a href="/cgi-bin/koha/admin/columns_settings.pl">Configure columns</a></dt>
213                         <dd>Hide or show columns for tables.</dd>
214                     [% END %]
215                     [% IF ( CAN_user_parameters_manage_audio_alerts ) %]
216                         <dt><a href="/cgi-bin/koha/admin/audio_alerts.pl">Audio alerts</a></dt>
217                         <dd>Define which events trigger which sounds</dd>
218                     [% END %]
219                     [% IF ( CAN_user_parameters_manage_sms_providers && Koha.Preference('SMSSendDriver') == 'Email' ) %]
220                             <dt><a href="/cgi-bin/koha/admin/sms_providers.pl">SMS cellular providers</a></dt>
221                             <dd>Define a list of cellular providers for sending SMS messages via email.</dd>
222                     [% END %]
223                     [% IF ( CAN_user_parameters_manage_usage_stats ) %]
224                         <dt><a href="/cgi-bin/koha/admin/usage_statistics.pl">Share your usage statistics</a></dt>
225                         <dd>Share with the Koha community the usage statistics of your Koha installation.</dd>
226                     [% END %]
227                     [% IF ( CAN_user_parameters_manage_mana ) %]
228                         <dt><a href="/cgi-bin/koha/admin/share_content.pl">Share content with Mana KB</a></dt>
229                         <dd>Share content (subscriptions, reports) with the Koha community</dd>
230                     [% END %]
231                     [% IF ( CAN_user_parameters_manage_additional_fields ) %]
232                     <dt><a href="/cgi-bin/koha/admin/additional-fields.pl">Additional fields</a></dt>
233                     <dd>Add additional fields to certain tables</dd>
234                     [% END %]
235                     [% IF Koha.Preference('EnableAdvancedCatalogingEditor') && ( CAN_user_parameters_manage_keyboard_shortcuts ) %]
236                         <dt><a href="/cgi-bin/koha/admin/adveditorshortcuts.pl">Keyboard shortcuts</a></dt>
237                         <dd>Define which keys trigger actions in the advanced cataloging editor</dd>
238                     [% END %]
239                 </dl>
240             [% END %]
241             </div>
242         </div>
243     </div>
244 </div>
245
246 [% INCLUDE 'intranet-bottom.inc' %]