Bug 35033: Add a validation for biblioitems in about/system information
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / about.tt
1 [% USE raw %]
2 [% USE HtmlTags %]
3 [% USE Koha %]
4 [% USE Asset %]
5 [% USE KohaDates %]
6 [% SET footerjs = 1 %]
7 [% INCLUDE 'doc-head-open.inc' %]
8 <title>About Koha &rsaquo; Koha</title>
9 [% INCLUDE 'doc-head-close.inc' %]
10 </head>
11 <body id="about_about" class="about">
12 [% INCLUDE 'header.inc' %]
13 [% PROCESS 'about-team.inc' %]
14
15 [% WRAPPER 'sub-header.inc' %]
16     [% WRAPPER breadcrumbs %]
17         [% WRAPPER breadcrumb_item %]
18             <a href="#" aria-current="page">About Koha</a>
19         [% END %]
20     [% END %]
21 [% END %]
22
23 <div class="main container-fluid">
24     <div class="row">
25         <div class="col-md-12">
26
27             <h1>About Koha</h1>
28
29             [% WRAPPER tabs id= "abouttabs" %]
30                 [% WRAPPER tabs_nav %]
31                     [% WRAPPER tab_item tabname= "about" bt_active= 1 %] <span>Server information</span> [% END %]
32                     [% WRAPPER tab_item tabname= "perl" %] <span>Perl modules</span> [% END %]
33                     [% WRAPPER tab_item tabname= "sysinfo" %] <span>System information</span> [% END %]
34                     [% WRAPPER tab_item tabname= "team" %] <span>Koha team</span> [% END %]
35                     [% WRAPPER tab_item tabname= "licenses" %] <span>Licenses</span> [% END %]
36                     [% WRAPPER tab_item tabname= "translations" %] <span>Translations</span> [% END %]
37                     [% WRAPPER tab_item tabname= "history" %] <span>Timeline</span> [% END %]
38                     [% WRAPPER tab_item tabname= "dedications" %] <span>Dedications</span> [% END %]
39                 [% END %]
40
41                 [% WRAPPER tab_panels %]
42                     [% WRAPPER tab_panel tabname= "about" bt_active= 1 %]
43                         <table>
44                             <caption>Server information</caption>
45                             <tr>
46                                 <th scope="row">Koha version: </th>
47                                 <td>[% kohaVersion | html %][% IF kohaCodename %] <strong>[% kohaCodename | html %]</strong>[% END %]</td>
48                             </tr>
49                             <tr>
50                                 <th scope="row">OS version ('uname -a'): </th>
51                                 <td>[% osVersion | html %]</td>
52                             </tr>
53                             <tr>
54                                 <th scope="row">Perl interpreter: </th>
55                                 <td>[% perlPath | html %]</td>
56                             </tr>
57                             <tr>
58                                 <th scope="row">Perl version: </th>
59                                 <td>[% perlVersion | html %]</td>
60                             </tr>
61                             <tr>
62                                 <th scope="row">Perl @INC: </th>
63                                 <td>
64                                     [% FOREACH perlIncPat IN perlIncPath %]
65                                         [% perlIncPat.perlinc | html %] <br />
66                                     [% END %]
67                                 </td>
68                             </tr>
69                             <tr>
70                                 <th scope="row">MySQL version: </th>
71                                 <td>[% mysqlVersion | html %]</td>
72                             </tr>
73                             <tr>
74                                 <th scope="row">Apache version: </th>
75                                 <td>[% apacheVersion | html %]</td>
76                             </tr>
77                             [% IF (is_psgi) %]
78                                 <tr>
79                                     <th scope="row">PSGI: </th>
80                                     <td>[% psgi_server | html %]</td>
81                                 </tr>
82                             [% END %]
83                             [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' %]
84                                 <tr>
85                                     <th scope="row">Elasticsearch: </th>
86                                     [% IF elasticsearch_fatal_config_error %]
87                                         <td><span class="bg-warning">[% elasticsearch_fatal_config_error | html %]</span></td>
88                                     [% ELSE %]
89                                         [% IF elasticsearch_status.running %]
90                                             <td class="bg-success">
91                                         [% ELSE %]
92                                             <td>
93                                         [% END %]
94                                                 <span>Version:</span>
95                                                 <span>[% elasticsearch_status.version | html %]</span>
96                                                 |
97                                                 <span>Nodes:</span>
98                                                 <span>[% elasticsearch_status.nodes.join(' / ') | html %]</span>
99                                                 |
100                                                 <span>Status:</span>
101                                             [% IF elasticsearch_status.running %]
102                                                 <span>running</span>
103                                                 |
104                                                 <span>Indices:</span>
105                                                 [% FOREACH index IN elasticsearch_status.indexes %]
106                                                     [% index.index_name | html %]
107                                                     (<span>count:</span> <em>[% index.index_count | html %]</em>)
108                                                     [% UNLESS loop.last %], [% END %]
109                                                 [% END %]
110                                             [% ELSE %]
111                                                 <span class="bg-warning">not running</span>
112                                             [% END %]
113                                             </td>
114                                     [% END # /IF elasticsearch_fatal_config_error %]
115                                 </tr>
116                             [% END %]
117                             <tr>
118                                 <th scope="row">Memcached: </th>
119                                 [% IF memcached_running AND is_memcached_still_active AND where_is_memcached_config == 'config_only' %]
120                                     <td class="bg-success">
121                                 [% ELSE %]
122                                     <td>
123                                 [% END %]
124                                         <span>Servers:</span>
125                                         [% IF memcached_servers %]
126                                             <span>[% memcached_servers | html %]</span>
127                                         [% ELSE %]
128                                             <span>undefined</span>
129                                         [% END %] |
130                                         <span>Namespace:</span>
131                                         [% IF memcached_namespace %]
132                                             <span>[% memcached_namespace | html %]</span>
133                                         [% ELSE %]
134                                             <span>undefined</span>
135                                         [% END %] |
136                                         <span>Status:</span>
137                                         [% IF memcached_servers %]
138                                             [% IF memcached_running and is_memcached_still_active %]
139                                                 <span class="bg-success">running</span>.
140                                             [% ELSE %]
141                                                 <span class="bg-warning">not running</span>.
142                                                 [% IF is_psgi %]
143                                                     <span>Remember memcached needs to be started before Plack.</span>
144                                                 [% END %]
145                                             [% END %]
146                                         [% ELSE %]
147                                             <span>unknown</span>
148                                         [% END %] |
149                                         <span>Config read from:</span>
150                                         [% SWITCH where_is_memcached_config %]
151                                             [% CASE 'config_only' %]
152                                                 <span class="bg-success">koha-conf.xml</span>
153                                             [% CASE 'ENV_only' %]
154                                                 <span class="bg-warning">ENV</span> <span>Note that the right place to define the memcached config is in your $KOHA_CONF file</span>
155                                             [% CASE 'both' %]
156                                                 <span class="bg-warning">ENV and koha-conf.xml</span> <span>Note that the right place to define the memcached config is in your $KOHA_CONF file. To avoid any misunderstanding you should not export the memcached config from ENV.</span>
157                                             [% CASE # nowhere %]
158                                                 <span class="bg-warning">Nowhere</span> <span>Note that the right place to define the memcached config is in your $KOHA_CONF file. Currently you do not have a valid memcached configuration defined.</span>
159                                         [% END %]
160                                     [% IF effective_caching_method != 'Cache::Memcached::Fast::Safe' %]
161                                         | <span>Effective caching method:</span> [% effective_caching_method | html %]
162                                     [% END %]
163                                 </td>
164                             </tr>
165                             <tr>
166                                 <th scope="row">Zebra version: </th>
167                                 <td>[% zebraVersion | html %]</td>
168                             </tr>
169                             <tr>
170                                 <th scope="row">Zebra status: </th>
171                                 [% IF (errZebraConnection == 10000) %]
172                                     <td class="bg-danger"><strong>Zebra server seems not to be available. Is it started?</strong></td>
173                                 [% ELSIF (errZebraConnection) %]
174                                     <td class="bg-warning"><strong>Error message from Zebra: [% ( errZebraConnection ) | html %]</strong></td>
175                                 [% ELSE %]
176                                     <td class="bg-success">Running</td>
177                                 [% END %]
178                             </tr>
179                             <tr>
180                                 <th scope="row">Message broker: </th>
181                                 [% IF warnConnectBroker %]
182                                     <td class="bg-warning"><strong>Using SQL polling</strong></td>
183                                 [% ELSE %]
184                                     <td class="bg-success">Using RabbitMQ</td>
185                                 [% END %]
186                             </tr>
187                             <tr>
188                                 <th scope="row">Date and time: </th>
189                                 <td>[% current_date_and_time | $KohaDates  with_hours => 1 %]</td>
190                             </tr>
191                             <tr>
192                                 [% timezone_config_class = (time_zone.config_invalid) ? 'bg-warning' : '' %]
193                                 [% timezone_env_class    = (time_zone.env_invalid)    ? 'bg-warning' : '' %]
194                                 <th scope="row">Time zone: </th>
195                                 <td>
196                                     <span>Used:</span> <span>[% time_zone.actual | html %]</span>
197                                     [% IF time_zone.actual_bad_tz_fallback %]
198                                         <span>(This is a fallback value due to a bad configuration)</span>
199                                     [% END %]
200                                     |
201                                     <span>Config:</span>
202                                     [% IF time_zone.config != '' %]
203                                         <span class="[% timezone_config_class | html %]">[% time_zone.config | html %]</span>
204                                     [% ELSE %]
205                                         <span>Undefined</span>
206                                     [% END %] |
207                                     <span>Environment (TZ):</span>
208                                     [% IF time_zone.environment != '' %]
209                                         <span class="[% timezone_env_class | html %]">[% time_zone.environment | html %]</span>
210                                     [% ELSE %]
211                                         <span>Undefined</span>
212                                     [% END %]
213                                 </td>
214                             </tr>
215                         </table>
216                     [% END # /WRAPPER tab_item about %]
217
218                     [% WRAPPER tab_panel tabname= "perl" %]
219                         <table style="cursor:pointer">
220                             <caption>Perl modules</caption>
221                             [% FOREACH tabl IN table %]
222                                 <tr>
223                                     [% FOREACH ro IN tabl.row %]
224                                         [% IF ( ro.current ) %]
225                                             [% IF ( ro.require ) %]
226                                                 <th scope="row" style="font-weight:bold;" title="Module current">
227                                             [% ELSE %]
228                                                 <th scope="row" style="font-weight:normal" title="Module current">
229                                             [% END %]
230                                         [% ELSIF ( ro.upgrade ) %]
231                                             [% IF ( ro.require ) %]
232                                                 <th scope="row" style="background-color:#FFCB2F;font-weight:bold;" title="Module upgrade needed">
233                                             [% ELSE %]
234                                                 <th scope="row" style="background-color:#FFCB2F;font-weight:normal" title="Module upgrade needed">
235                                             [% END %]
236                                         [% ELSE %]
237                                             [% IF ( ro.name == '' ) %]
238                                                 <th>
239                                             [% ELSIF ( ro.require ) %]
240                                                 <th scope="row" style="background-color:#FF8A8A;font-weight:bold;" title="Required module missing">
241                                             [% ELSE %]
242                                                 <th scope="row" style="background-color:#FF8A8A;font-weight:normal" title="Optional module missing">
243                                             [% END %]
244                                         [% END # /IF ro.current %]
245                                         [% IF ( ro.name ) %]
246                                             [% ro.name | html %]
247                                             <span style="font-weight:normal; font-size:smaller">
248                                                 ([% ro.reqversion | html %]
249                                                 [% IF ro.maxversion %] - [% ro.maxversion | html %][% END %]
250                                                 [% IF ro.excversion %][% FOR v IN ro.excversion %], ![% v | html %][% END %][% END %])
251                                             </span>
252                                         [% END %]
253                                         </th>
254                                         [% IF ( ro.name == '' ) %]
255                                             <td>
256                                         [% ELSIF ( ro.version ) %]
257                                             <td>[% ro.version | html %]
258                                         [% ELSE %]
259                                             <td style="font-weight:bold">Not Installed
260                                         [% END %]
261                                             </td>
262                                     [% END # /FOREACH ro %]
263                                 </tr>
264                             [% END # /FOREACH tabl %]
265                         </table>
266                     [% END # /WRAPPER tab_item perl %]
267
268                     [% IF Asset.css("css/staff-global.css") == "" || Asset.js("js/vue/dist/erm.js") == "" %]
269                         [% SET warnMissingCompiledFiles = 1 %]
270                     [% END %]
271                     [% WRAPPER tab_panel tabname= "sysinfo" %]
272                         [% IF weasyprint_missing || warnPrefRequireChoosingExistingAuthority || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || warnPrefPatronSelfRegistrationDefaultCategory || invalid_yesno.count || warnNoActiveCurrency || warnIsRootUser || xml_config_warnings.size || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || has_ai_issues || oauth2_missing_deps || bad_yaml_prefs || warnRelationships || log4perl_errors || config_bcrypt_settings_no_set || warnHiddenBiblionumbers.size || warnConnectBroker || elasticsearch_has_missing || warnMissingCompiledFiles || warnDbRowFormat %]
273                             [% IF ( warnDbRowFormat ) %]
274                                 <h2>Database row format incorrect</h2>
275                                 <p>Database tables with a row format other than 'DYNAMIC': [% warnDbRowFormat | html %]</p>
276                                 <p>You may experience problems upgrading to newer versions of Koha unless you update the row format for your database tables.</p>
277                                 <p>To know how to avoid this problem see the related wiki page:
278                                     <a href="https://wiki.koha-community.org/wiki/Database_row_format">Database row format</a>
279                                 </p>
280                             [% END %]
281
282                             [% IF (warnIsRootUser) %]
283                                 <h2>Warning regarding current user</h2>
284                                 <p>You are logged in as the database administrative user. This is not recommended because some parts of Koha will not function as expected when using this account.</p>
285                                 <p>Please log in instead with a regular staff account. To create a staff account, create a library, a patron category 'Staff' and add a new patron. Then give this patron permissions from 'More' in the toolbar.</p>
286                             [% END # /IF warnIsRootUser %]
287
288                             [% IF has_ai_issues %]
289                                 <h2>Data problems</h2>
290                                 <p>
291                                     Some of your tables have problems with their auto_increment values which may lead to data loss.
292                                 </p>
293                                 <p>
294                                     <strong>You should not ignore this warning.</strong>
295                                 </p>
296                                 <p>
297                                     The problem is that InnoDB does not keep auto_increment across SQL server restarts (it is only set in memory). So on server startup the auto_increment values are set to max(table.id)+1.
298                                 </p>
299                                 <p>To know how to avoid this problem see the related wiki page:
300                                     <a href="https://wiki.koha-community.org/wiki/DBMS_auto_increment_fix">DBMS auto increment fix</a>
301                                 </p>
302
303                                 <h3>Problems found</h3>
304                                 [% IF ai_patrons %]
305                                     <h4>Patrons</h4>
306                                     <p>The following IDs exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:</p>
307                                     <p>
308                                         [% FOR p IN ai_patrons %]
309                                             [% p.borrowernumber | html %]
310                                             [% UNLESS loop.last %], [% END %]
311                                         [% END %]
312                                     </p>
313                                 [% END %]
314                                 [% IF ai_biblios %]
315                                     <h4>Bibliographic records</h4>
316                                     <p>The following IDs exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:</p>
317                                     <p>
318                                         [% FOR b IN ai_biblios %]
319                                             [% b.biblionumber | html %]
320                                             [% UNLESS loop.last %], [% END %]
321                                         [% END %]
322                                     </p>
323                                 [% END %]
324                                 [% IF ai_biblioitems %]
325                                     <h4>Bibliographic records</h4>
326                                     <p>The following IDs exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblioitems" | $HtmlTags tag="strong" %]:</p>
327                                     <p>
328                                         [% FOR b IN ai_biblioitems %]
329                                             [% b.biblioitemnumber | html %]
330                                             [% UNLESS loop.last %], [% END %]
331                                         [% END %]
332                                     </p>
333                                 [% END %]
334                                 [% IF ai_items %]
335                                     <h4>Items</h4>
336                                     <p>The following IDs exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:</p>
337                                     <p>
338                                         [% FOR i IN ai_items %]
339                                             [% i.itemnumber | html %]
340                                             [% UNLESS loop.last %], [% END %]
341                                         [% END %]
342                                     </p>
343                                 [% END %]
344                                 [% IF ai_checkouts %]
345                                     <h4>Checkouts</h4>
346                                     <p>The following IDs exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:</p>
347                                     <p>
348                                         [% FOR c IN ai_checkouts %]
349                                             [% c.issue_id | html %]
350                                             [% UNLESS loop.last %], [% END %]
351                                         [% END %]
352                                     </p>
353                                 [% END %]
354                                 [% IF ai_holds %]
355                                     <h4>Holds</h4>
356                                     <p>The following IDs exist in both tables [% "reserves" | $HtmlTags tag="strong" %] and [% "old_reserves" | $HtmlTags tag="strong" %]:</p>
357                                     <p>
358                                         [% FOR h IN ai_holds %]
359                                             [% h.reserve_id | html %]
360                                             [% UNLESS loop.last %], [% END %]
361                                         [% END %]
362                                     </p>
363                                 [% END %]
364                                 <br/>
365                             [% END # /IF has_ai_issues %]
366
367                             [% IF warnRelationships %]
368                                 <h2>Patron relationship problems</h2>
369                                 [% IF bad_relationships_count %]
370                                     <p>Your database contained guarantee/guarantor pairs with no defined relationship. They have been set the value '_bad_data' in the [% "borrowers.relationship" | $HtmlTags tag="strong" %] and/or [% "borrower_relationships.relationship" | $HtmlTags tag="strong" %] columns. Fix them manually by recreating those relationships, or have your system's administrator correct the values.</p>
371                                 [% END # /IF bad_relationships_count %]
372
373                                 [% IF wrong_relationships %]
374                                     <p>The following values have been used for guarantee/guarantor relationships, but do not exist in the 'borrowerRelationship' system preference:</p>
375                                     <ul>
376                                         [% FOR rel IN wrong_relationships %]
377                                             <li>[% rel.0 | html %]</li>
378                                         [% END %]
379                                     </ul>
380                                     <p>If the relationship is one you want, please add it to the 'borrowerRelationship' system preference, otherwise have your system's administrator correct the values in [% "borrowers.relationship" | $HtmlTags tag="strong" %] and/or [% "borrower_relationships.relationship" | $HtmlTags tag="strong" %] in the database.</p>
381                                 [% END # /IF wrong_relationships %]
382                             [% END # /IF warnRelationships %]
383
384                             [% IF log4perl_errors %]
385                                 <h2>Logging system does not behave correctly</h2>
386                                 [% FOR e IN log4perl_errors %]
387                                     [% SWITCH e %]
388                                         [% CASE 'missing_config_entry' %]<span>There is no 'log4perl_conf' entry in the config file.</span>
389                                         [% CASE 'cannot_read_config_file' %]<span>The log4perl config file cannot be opened.</span>
390                                         [% CASE 'logfile_not_writable' %]<span>One of the logfiles listed in the config file is not writable.</span>
391                                         [% CASE 'cannot_init_module' %]<span>The Koha::Logger module cannot be initiated correctly (check the log file).</span>
392                                         [% CASE %]<span>Unknown error '[% e | html %]'.</span>
393                                     [% END %]
394                                 [% END # /FOR e %]
395                             [% END # /IF log4perl_errors %]
396
397                             [% IF warnConnectBroker %]
398                                 <h2>Impossible to connect to the message broker</h2>
399                                 There is an error when trying to connect to the message broker (RabbitMQ), check the Koha log files.
400                                 <br/>
401                                 Maybe it is not installed and configured correctly?
402                                 <br/>
403                                 Contact your system administrator.
404                             [% END # /IF warnConnectBroker %]
405
406                             [% IF weasyprint_missing || warnPrefRequireChoosingExistingAuthority || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || warnPrefPatronSelfRegistrationDefaultCategory || invalid_yesno.count || warnNoActiveCurrency || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || warnXSLT || oauth2_missing_deps || bad_yaml_prefs || warnIssuingRules || config_bcrypt_settings_no_set || warnHiddenBiblionumbers.size || warnFastCataloging %]
407                                 <h2>Warnings regarding the system configuration</h2>
408                                 <table>
409                                     <caption>Preferences and parameters</caption>
410                                     [% IF (warnFastCataloging) %]
411                                         <tr>
412                                             <th scope="row"><strong>Warning</strong> </th>
413                                             <td>There is no "Fast add" (FA) framework defined in administration->MARC frameworks. This disables the 'Fast cataloging' feature in cataloging/circulation.</td>
414                                         </tr>
415                                     [% END %]
416                                     [% IF (warnPrefRequireChoosingExistingAuthority) %]
417                                         <tr>
418                                             <th scope="row"><strong>Warning</strong> </th>
419                                             <td>System preference 'RequireChoosingExistingAuthority' is disabled, but needs 'AutoCreateAuthorites' enabled. Otherwise catalogers can add headings that will not be linked to authorities.</td>
420                                         </tr>
421                                     [% END %]
422                                     [% IF (warnPrefEasyAnalyticalRecords) %]
423                                         <tr>
424                                             <th scope="row"><strong>Warning</strong> </th>
425                                             <td>System preference 'EasyAnalyticalRecords' set, but UseControlNumber preference is set to 'Use'. Set it to 'Don't use' or else the 'Show analytics' links in the staff interface and the OPAC will be broken.</td>
426                                         </tr>
427                                     [% END %]
428                                     [% IF warnPrefAnonymousPatronOPACPrivacy %]
429                                         <tr>
430                                             <th scope="row"><strong class="error">Error</strong> </th>
431                                             <td>System preference 'OPACPrivacy' set, but AnonymousPatron preference is set to '0'. Set it to a valid borrower number or checkins for these patrons will fail.</td>
432                                         </tr>
433                                     [% END %]
434                                     [% IF warnPrefAnonymousPatronAnonSuggestions %]
435                                         <tr>
436                                             <th scope="row"><strong>Warning</strong> </th>
437                                             <td>System preference 'AnonSuggestions' set, but AnonymousPatron preference is set to '0'. Set it to a valid borrower number if you want that this feature works correctly.</td>
438                                         </tr>
439                                     [% END %]
440                                     [% IF warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist %]
441                                         <tr>
442                                             <th scope="row"><strong class="error">Error</strong> </th>
443                                             <td>Some patrons have requested a privacy on returning item, but the AnonymousPatron preference is not set correctly. Set it to a valid borrower number or checkins for these patrons will fail.</td>
444                                         </tr>
445                                     [% END %]
446                                     [% IF warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist %]
447                                         <tr>
448                                             <th scope="row"><strong>Warning</strong> </th>
449                                             <td>System preference 'AnonSuggestions' set, but AnonymousPatron preference is not set correctly. Set it to a valid borrower number if you want that this feature works correctly.</td>
450                                         </tr>
451                                     [% END %]
452                                     [% IF warnPrefKohaAdminEmailAddress %]
453                                         <tr>
454                                             <th scope="row"><strong>Warning</strong> </th>
455                                             <td>System preference 'KohaAdminEmailAddress' does not contain a valid email address. Emails will not be sent.</td>
456                                         </tr>
457                                     [% END %]
458                                     [% IF warnPrefOpacHiddenItems %]
459                                         <tr>
460                                             <th scope="row"><strong>Warning</strong> </th>
461                                             <td>System preference 'OpacHiddenItems' generates a warning and will produce unexpected behaviors: [% warnPrefOpacHiddenItems | html %]</th></tr>
462                                     [% END %]
463                                     [% IF warnPrefPatronSelfRegistrationDefaultCategory %]
464                                         <tr><th scope="row"><strong>Warning</strong> </th><td>System preference 'PatronSelfRegistration' is set, but 'PatronSelfRegistrationDefaultCategory' does not contain a valid patron category code. Patron self-registration is disabled.</td></tr>
465                                     [% END %]
466                                     [% IF warnXSLT %]
467                                         [% FOR p IN warnXSLT %]
468                                             <tr>
469                                                 <th scope="row"><strong>Warning</strong> </th>
470                                                 <td>System preference '[% p.syspref | html %]' is '[% p.value | html %]', but the file '[% p.filename | html %]' does not exist.</th></tr>
471                                         [% END %]
472                                     [% END %]
473                                     [% IF invalid_yesno.count %]
474                                         [% FOR p IN invalid_yesno %]
475                                             <tr>
476                                                 <th scope="row"><strong>Warning</strong> </th>
477                                                 <td>System preference '[% p.variable | html %]' must be '0' or '1', but is [% IF p.value.defined %]'[% p.value | html%]'[% ELSE %]NULL[% END %].</td>
478                                             </tr>
479                                         [% END %]
480                                     [% END %]
481                                     [% IF warnNoActiveCurrency %]
482                                         <tr>
483                                             <th scope="row"><strong>Warning</strong> </th>
484                                             <td>No active currency is defined. Please go to <a href="/cgi-bin/koha/admin/currency.pl">Administration &gt; Currencies and exchange rates</a> and mark one currency as active.</td>
485                                         </tr>
486                                     [% END %]
487                                     [% IF warnStatisticsFieldsError %]
488                                         <tr>
489                                             <th scope="row"><strong>Warning</strong> </th>
490                                             <td>System preference 'StatisticsFields' contains field names not belonging to the items database table: [% warnStatisticsFieldsError | html %] </td>
491                                         </tr>
492                                     [% END %]
493                                     [% IF AutoSelfCheckPatronDoesNotHaveSelfCheckPerm %]
494                                         <tr>
495                                             <th scope="row"><strong>Warning</strong> </th>
496                                             <td>
497                                                 The patron used for the self checkout module at the OPAC does not have the self_check => self_checkout_module permission.
498                                             </td>
499                                         </tr>
500                                     [% END %]
501                                     [% IF AutoSelfCheckPatronHasTooManyPerm %]
502                                         <tr>
503                                             <th scope="row"><strong>Warning</strong> </th>
504                                             <td>
505                                                 The patron used for the self checkout module at the OPAC has too many permissions. They should only have self_check => self_checkout_module.
506                                             </td>
507                                         </tr>
508                                     [% END %]
509                                     [% IF warnNoTemplateCaching %]
510                                         <tr>
511                                             <th scope="row"><strong>Warning</strong> </th>
512                                             <td>
513                                                 You are missing the &lt;template_cache_dir&gt; entry in your koha-conf.xml file.
514                                                 That will bring a performance boost to enable it.
515                                             </td>
516                                         </tr>
517                                     [% END %]
518                                     [% IF warnILLConfiguration %]
519                                         [% IF no_ill_backends %]
520                                             <tr>
521                                                 <th scope="row"><strong>Warning</strong> </th>
522                                                 <td>
523                                                     The ILL module is enabled, but there are no backends available.
524                                                 </td>
525                                             </tr>
526                                         [% END %]
527                                         [% IF ill_partner_code_not_defined %]
528                                             <tr>
529                                                 <th scope="row"><strong>Warning</strong> </th>
530                                                 <td>
531                                                     The ILL module is enabled, but ILLPartnerCode system preference is empty. Falling back to the hardcoded 'IL'.
532                                                 </td>
533                                             </tr>
534                                         [% END %]
535                                         [% IF ill_partner_code_no_patrons %]
536                                             <tr>
537                                                 <th scope="row"><strong>Warning</strong> </th>
538                                                 <td>
539                                                     The ILL module is enabled and ILLPartnerCode system preference configured, but there are no patrons in [% ill_partner_code_no_patrons | html %] category.
540                                                 </td>
541                                             </tr>
542                                         [% END %]
543                                         [% IF ill_branch_not_defined %]
544                                             <tr>
545                                                 <th scope="row"><strong>Warning</strong> </th>
546                                                 <td>
547                                                     The ILL module is enabled, but no 'branch' block is defined in koha-conf.xml. You must define this block before use.
548                                                 </td>
549                                             </tr>
550                                         [% END %]
551                                         [% IF ill_partner_code_doesnt_exist %]
552                                             <tr>
553                                                 <th scope="row"><strong>Warning</strong> </th>
554                                                 <td>
555                                                     The ILL module is enabled, but the configured ILLPartnerCode ([% ill_partner_code_doesnt_exist | html %]) is not defined on the system.
556                                                 </td>
557                                             </tr>
558                                         [% END %]
559                                     [% END %]
560
561                                     [% IF weasyprint_missing %]
562                                         <tr><th scope="row"><strong>Warning</strong> </th><td>
563                                         The <strong>weasyprint</strong> tool is not installed.
564                                         </td></tr>
565                                     [% END %]
566
567                                     [% IF oauth2_missing_deps %]
568                                         <tr>
569                                             <th scope="row"><strong>Warning</strong> </th>
570                                             <td>
571                                                 System preference 'RESTOAuth2ClientCredentials' is set, but the required Net::OAuth2::AuthorizationServer dependency is missing. The feature is disabled.
572                                             </td>
573                                         </tr>
574                                     [% END %]
575                                     [% IF bad_yaml_prefs %]
576                                         <tr>
577                                             <th scope="row"><strong>Warning</strong> </th>
578                                             <td>
579                                                 Some system preferences have badly formatted YAML content: [% bad_yaml_prefs.join(', ') | html %]
580                                             </td>
581                                         </tr>
582                                     [% END %]
583                                     [% IF config_bcrypt_settings_no_set %]
584                                         <tr>
585                                             <th scope="row"><strong>Warning</strong> </th>
586                                             <td>
587                                                 System preference 'Pseudonymization' is set, but there is not 'bcrypt_settings' entry defined in the $KOHA_CONF file.
588                                             </td>
589                                         </tr>
590                                     [% END %]
591                                     [% IF warnHiddenBiblionumbers.size %]
592                                         <tr>
593                                             <th scope="row"><strong>Warning</strong> </th>
594                                             <td>
595                                                 [% FOR w IN warnHiddenBiblionumbers %]
596                                                     <span>Bibliographic framework "[% w.frameworkcode | html %]" has the biblionumber field hidden at the interface [% w.interface | html %]</span><br/>
597                                                 [% END %]
598                                             </td>
599                                         </tr>
600                                     [% END %]
601                                     [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' && elasticsearch_status.version.substr(0,1) < 6 %]
602                                         <tr>
603                                             <th scope="row"><strong>Deprecation warning</strong></th>
604                                             <td>
605                                                 Elasticsearch version 5.x is not supported in Koha 20.11 and greater. Please upgrade your Elasticsearch cluster
606                                             </td>
607                                         </tr>
608                                     [% END %]
609                                 </table>
610                             [% END # /IF warnPrefRequireChoosingExistingAuthority %]
611
612                             [% IF xml_config_warnings.size %]
613                                 <table>
614                                     <caption>XML configuration file</caption>
615                                     [% FOREACH config_entry IN xml_config_warnings %]
616                                         [% IF config_entry.error == 'zebra_bib_index_mode_is_grs1' %]
617                                             <tr>
618                                                 <th scope="row"><strong>Warning</strong></th>
619                                                 <td>
620                                                     The &lt;zebra_bib_index_mode&gt; entry set to 'grs1', which is no longer supported.
621                                                     Please use DOM instead. To switch follow this page of wiki:
622                                                     <a href="https://wiki.koha-community.org/wiki/Switching_to_dom_indexing">Switching to dom indexing</a>
623                                                 </td>
624                                             </tr>
625                                         [% ELSIF config_entry.error == 'zebra_auth_index_mode_is_grs1' %]
626                                             <tr>
627                                                 <th scope="row"><strong>Warning</strong></th>
628                                                 <td>
629                                                     The &lt;zebra_auth_index_mode&gt; entry set to 'grs1', which is no longer supported.
630                                                     Please use DOM instead. To switch follow this page of wiki:
631                                                     <a href="https://wiki.koha-community.org/wiki/Switching_to_dom_indexing">Switching to dom indexing</a>
632                                                 </td>
633                                             </tr>
634                                         [% ELSIF config_entry.error == 'use_zebra_facets_entry_missing' %]
635                                             <tr>
636                                                 <th scope="row"><strong>Warning</strong></th>
637                                                 <td>
638                                                     The &lt;use_zebra_facets&gt; entry is missing in your configuration file. Falling back
639                                                     to legacy facet calculation.
640                                                 </td>
641                                             </tr>
642                                         [% ELSIF config_entry.error == 'log4perl_entry_missing' %]
643                                             <tr>
644                                                 <th scope="row"><strong>Warning</strong></th>
645                                                 <td>
646                                                     You are missing the &lt;log4perl_conf&gt; entry in your koha-conf.xml file. Please
647                                                     add it, pointing to the log4perl.conf file for your Koha instance.
648                                                 </td>
649                                             </tr>
650                                         [% ELSIF config_entry.error == 'lockdir_entry_missing' %]
651                                             <tr>
652                                                 <th scope="row"><strong>Warning</strong></th>
653                                                 <td>
654                                                     You are missing the &lt;lockdir&gt; entry in your koha-conf.xml file. Please
655                                                     add it, pointing to your Koha instance's lock dir.
656                                                 </td>
657                                             </tr>
658                                         [% ELSIF config_entry.error == 'lockdir_not_writable' %]
659                                             <tr>
660                                                 <th scope="row"><strong>Warning</strong></th>
661                                                 <td>
662                                                     The configured &lt;lockdir&gt; entry in your koha-conf.xml file points to a
663                                                     non-writable directory ([% config_entry.lockdir | html %]).
664                                                 </td>
665                                             </tr>
666                                         [% ELSIF config_entry.error == 'uploadpath_entry_missing' %]
667                                             <tr>
668                                                 <th scope="row"><strong>Warning</strong></th>
669                                                 <td>
670                                                     You are missing the &lt;upload_path&gt; entry in your koha-conf.xml file. Please
671                                                     add it, pointing to the configured file upload directory for your Koha instance.
672                                                 </td>
673                                             </tr>
674                                         [% ELSIF config_entry.error == 'uploadpath_and_opacbaseurl_entry_missing' %]
675                                             <tr>
676                                                 <th scope="row"><strong>Warning</strong></th>
677                                                 <td>
678                                                     You are missing the &lt;upload_path&gt; entry in your koha-conf.xml file. Please
679                                                     add it, pointing to the configured file upload directory for your Koha instance.
680                                                     Also note that you need to properly set the OPACBaseURL preference for the file upload plugin to work.
681                                                 </td>
682                                             </tr>
683                                         [% ELSIF config_entry.error == 'tmp_path_missing' %]
684                                             <tr>
685                                                 <th scope="row"><strong>Warning</strong></th>
686                                                 <td>
687                                                     You are missing the &lt;tmp_path&gt; entry in your koha-conf.xml file. Please
688                                                     add it, pointing to the configured temporary directory for your Koha instance.
689                                                     The effective temporary directory is '[% config_entry.effective_tmp_dir | html %]'.
690                                                 </td>
691                                             </tr>
692                                         [% ELSIF config_entry.error == 'encryption_key_missing' %]
693                                             <tr>
694                                                 <th scope="row"><strong>Warning</strong></th>
695                                                 <td>
696                                                     You are missing the &lt;encryption_key&gt; entry in your koha-conf.xml file.
697                                                     Please generate a key. We recommend one of at least 32 bytes. (You might use 'pwgen 32' to do so.)
698                                                 </td>
699                                             </tr>
700                                         [% END # /IF config_entry.error %]
701                                     [% END # /FOREACH config_entry %]
702                                 </table>
703                             [% END # /IF xml_config_warnings.size %]
704
705                             [% IF warnIssuingRules %]
706                                 <table>
707                                     <caption>Issuing rules</caption>
708                                     [% FOREACH unit IN ir_units %]
709                                         <tr>
710                                             <th scope="row"><strong>Warning</strong></th>
711                                             <td>
712                                                 The [% unit.branchcode || 'branchcode=default' | html %], [% unit.categorycode || 'categorycode=default' | html %], [% unit.itemtype || 'itemtype=default' | html %]issuingrule will fallback to 'days' for 'lengthunit' as it is incorrectly defined as [% unit.rule_value | html %].
713                                             </td>
714                                         </tr>
715                                     [% END # /FOREACH unit %]
716                                 </table>
717                             [% END # /IF warnIssuingRules %]
718
719                             [% IF elasticsearch_has_missing %]
720                                 <table>
721                                     <caption>Records are not indexed in Elasticsearch</caption>
722                                     [% FOREACH index IN elasticsearch_status.indexes %]
723                                         [% IF index.missing_count %]
724                                             <tr>
725                                                 <th scope="row"><strong>Warning</strong></th>
726                                                 <td>
727                                                     [% index.missing_count | html %] record(s) missing on a total of [% index.index_count | html %] in index [% index.index_name | html %].
728                                                 </td>
729                                             </tr>
730                                         [% END %]
731                                     [% END %]
732                                 </table>
733                             [% END # /IF elasticsearch_has_missing %]
734
735                             [% IF warnMissingCompiledFiles %]
736                                 <tr><th scope="row"><strong class="error">Error</strong></th><td>
737                                     Compiled CSS and/or JS files are not present. Please run `yarn build` to generate them.
738                                 </td></tr>
739                             [% END # /IF warnMissingCompiledFiles %]
740
741                         [% ELSE %]
742                             <p>No warnings.</p>
743                         [% END # /IF warnRequireChoosingExistingAuthority... %]
744                     [% END # /WRAPPER tab_item sysinfo %]
745
746                     [% WRAPPER tab_panel tabname= "team" %]
747                         <h2>Special thanks to the following organizations</h2>
748                         <ul>
749                             <li>
750                                 <a href="http://library.org.nz">Horowhenua Library Trust</a>, New Zealand, and Rosalie Blake, Head of Libraries, (Koha 1.0)
751                             </li>
752                             <li>
753                                 The <a href="http://www.myacpl.org/">Athens County Public Libraries</a>, Ohio, USA (MARC sponsorship, documentation, template maintenance)</li>
754                             <li>
755                                 <a href="http://www.emn.fr">EMN (Ecole des Mines de Nantes)</a>, France (Suggestions, Stats wizards and improved LDAP sponsorship)
756                             </li>
757                             <li>
758                                 <a href="http://www.mines-paristech.fr">Mines Paristech (previously Ecole Nationale Supérieure des Mines de Paris)</a>, France (bibliographic frameworks, MARC authorities, OPAC basket, Serials sponsorship)
759                             </li>
760                             <li>
761                                 <a href="http://www.mediathequeouestprovence.fr/">SAN-Ouest Provence</a>, France (Koha 3.0 enhancements to patrons and holds modules)
762                             </li>
763                             <li>
764                                 The <a href="http://ccfls.org">Crawford County Federated Library System</a>, PA, USA (Koha 3.0 Zebra Integration sponsorship)</li>
765                             <li>
766                                 The <a href="http://www.geauga.lib.oh.us/">Geauga County Public Library</a>, OH, USA (Koha 3.0 beta testing)</li>
767                             <li>
768                                 The <a href="http://library.neu.edu.tr">Near East University</a>, Cyprus</li>
769                             <li>
770                                 OPUS International Consultants, Wellington, New Zealand (Corporate Serials sponsorship)</li>
771                             <li>
772                                 <a href="http://www.famfamfam.com/">famfamfam.com</a> Birmingham (UK) based developer Mark James for the famfamfam Silk iconset.
773                             </li>
774                             <li>
775                                 <a href="http://www.ashs.school.nz/">Albany Senior High School</a>, Auckland, New Zealand (OPAC 'star-ratings' sponsorship)
776                             </li>
777                         </ul>
778
779                         <h2>Koha release teams</h2>
780                         [% IF maintenance_team %]
781                             <div class="row">
782                                 <div class="col-md-6">
783                                     <h3>Koha [% short_version | html %][% IF kohaCodename %] ([% kohaCodename | html %])[% END %] release team</h3>
784                                     [% IF development_version %]
785                                         <p>You are running a development version of Koha</p>
786                                     [% ELSE %]
787                                         [% INCLUDE team t=release_team v='release' %]
788                                     [% END %]
789                                 </div>
790
791                                 <div class="col-md-6">
792                                     <h3>Current maintenance team</h3>
793                                     [% INCLUDE team t=maintenance_team v=short_version %]
794                                 </div>
795                             </div>
796                         [% ELSE %]
797                             <div class="dialog alert">
798                                 Could not read the teams.yaml file. Please make sure &lt;docdir&gt; is correctly defined in koha-conf.xml.
799                             </div>
800                         [% END # /maintenance_team %]
801
802                         <h2>Koha development team</h2>
803                         [% IF contributors.size %]
804                             <ul class="columns-4">
805                                 [% FOREACH contributor IN contributors %]
806                                     <li>[% INCLUDE person p=contributor %][% INCLUDE contributions p=contributor %]</li>
807                                 [% END %]
808                             </ul>
809                         [% ELSE %]
810                             <div class="dialog alert">
811                                 Could not read the contributors.yaml file. Please make sure &lt;docdir&gt; is correctly defined in koha-conf.xml.
812                             </div>
813                         [% END # /IF contributors.size %]
814                         <hr>
815
816                         <h2>Contributing companies and institutions</h2>
817                         <ul class="columns-4">
818                             <li>Allen Ginsberg Library, USA</li>
819                             <li>Alingsås Public Library, Sweden</li>
820                             <li>American Numismatic Society, USA</li>
821                             <li>Arcadia Public Library, USA</li>
822                             <li>Athens County Public Libraries, USA</li>
823                             <li>BdP de la Meuse, France</li>
824                             <li>BibLibre, France</li>
825                             <li>Biblioteca Provincial Fr. Mamerto Esquiú (Provincia Franciscana de la Asunción), Argentina</li>
826                             <li>Bibliotheksservice-Zentrum Baden-Württemberg (BSZ), Germany</li>
827                             <li>Briar Cliff University, USA</li>
828                             <li>Brimbank City Council, Australia</li>
829                             <li>Brooklyn Law School Library, USA</li>
830                             <li>Bibliothèque Universitaire des Langues et Civilisations (<a href="https://www.bulac.fr">BULAC</a>), France</li>
831                             <li>ByWater Solutions, USA</li>
832                             <li>California College of the Arts, USA</li>
833                             <li>Camden County, USA</li>
834                             <li>Carnegie Stout Library, USA</li>
835                             <li>Calyx, Australia</li>
836                             <li>Catalyst IT, New Zealand</li>
837                             <li>Central Kansas Library System (CKLS), USA</li>
838                             <li>Centre collégial des services regroupés (CCSR), Canada</li>
839                             <li>Cheshire Libraries, United Kingdom</li>
840                             <li>Coeur d'Alene Public Library, USA</li>
841                             <li>Corpus Christi Public Libraries, USA</li>
842                             <li>C &amp; P Bibliography Services, USA</li>
843                             <li>Dataly Tech, Greece</li>
844                             <li>Devinim, Turkey</li>
845                             <li>Do Space, USA</li>
846                             <li>DoverNet, USA</li>
847                             <li>doXulting</li>
848                             <li>Duchesne County Library, USA</li>
849                             <li>Escuela de Orientacion Lacaniana, Argentina</li>
850                             <li>Fenway Library Organization, USA</li>
851                             <li>Fargo Public Library, USA</li>
852                             <li>Farmington Public Library, USA</li>
853                             <li>FIT</li>
854                             <li>Foundations Bible College &amp; Seminary, USA</li>
855                             <li>Goethe-Institut, Germany</li>
856                             <li>Gothenburg University Library, Sweden</li>
857                             <li>Halland County Library, Sweden</li>
858                             <li>Harrison Carmel Public Library, USA</li>
859                             <li>Hauraki District Libraries, New Zealand</li>
860                             <li>Higher Education Libraries of Massachusetts, USA</li>
861                             <li>Hochschule für Gesundheit (hsg), Germany</li>
862                             <li>Hotchkiss School, USA</li>
863                             <li>Katipo Communications, New Zealand</li>
864                             <li>KEEP SOLUTIONS, Portugal</li>
865                             <li>KohaAloha, New Zealand</li>
866                             <li>Koha-Suomi Oy, Finland</li>
867                             <li>LibLime, USA</li>
868                             <li>Library of the Józef Piłsudski Institute of America, USA</li>
869                             <li>Libriotech, Norway</li>
870                             <li>Los Gatos Public Library, USA</li>
871                             <li>Lund University Library, Sweden</li>
872                             <li>MassCat, USA</li>
873                             <li>Middletown Township Public Library, USA</li>
874                             <li>National Library of Finland, Finland</li>
875                             <li>Newcastle City Council, United Kingdom</li>
876                             <li>New Zealand Central Agencies Library, New Zealand</li>
877                             <li>New Zealand Ministry of Education Library, New Zealand</li>
878                             <li>North Central Regional Library (NCRL), USA</li>
879                             <li>Northeast Kansas Library System (NEKLS), USA</li>
880                             <li>OPUS</li>
881                             <li>Orex Digital, Spain</li>
882                             <li>Oslo Public Library, Norway</li>
883                             <li>Plano Independent School, USA</li>
884                             <li>Plant and Food Research Limited, New Zealand</li>
885                             <li>Prosentient Systems, Australia</li>
886                             <li>PTFS, Maryland, USA</li>
887                             <li>PTFS Europe Ltd, United Kingdom</li>
888                             <li>Rijksmuseum, Amsterdam, The Netherlands</li>
889                             <li>Rolling Hills Consolidated Libraries, USA</li>
890                             <li>Round Rock Public Library, USA</li>
891                             <li>SAN-Ouest Provence, France</li>
892                             <li>Sefton Council, United Kingdom</li>
893                             <li>software.coop, United Kingdom</li>
894                             <li>South-East Kansas Library System (SEKLS), USA</li>
895                             <li>South Taranaki District Council, New Zealand</li>
896                             <li>Stockholm University Library, Sweden</li>
897                             <li>SWITCH Library Consortium, USA</li>
898                             <li>Talking Tech, Global</li>
899                             <li>Tamil, France</li>
900                             <li>Theke Solutions, Argentina</li>
901                             <li>Tulong Aklatan, Philippines</li>
902                             <li>Uintah Library System, USA</li>
903                             <li>Universidad de El Salvador, El Salvador</li>
904                             <li>Universidad Empresarial Siglo 21, Argentina</li>
905                             <li>Universidad Nacional de Córdoba, Argentina</li>
906                             <li>Universidad ORT Uruguay</li>
907                             <li>Université d'Aix-Marseille, France</li>
908                             <li>Université de Lyon 3, France</li>
909                             <li>Université de Rennes 2, France</li>
910                             <li>Université de St Etienne, France</li>
911                             <li>University of the Arts London, United Kingdom</li>
912                             <li>Vaara-kirjastot, Finland</li>
913                             <li>Vanier College, Canada</li>
914                             <li>Vermont Organization of Koha Automated Libraries (VOKAL), USA</li>
915                             <li>Ville de Victoriaville, Canada</li>
916                             <li>Virginia Tech, USA</li>
917                             <li>Washoe County Library System, USA</li>
918                             <li>Xercode, Spain</li>
919                         </ul>
920
921                         <h2>Additional thanks to...</h2>
922                         <ul>
923                             <li>Irma Birchall</li>
924                             <li>Rachel Hamilton-Williams (Kaitiaki from 2004 to present)</li>
925                             <li>Stephen Hedges (early Documentation Manager)</li>
926                             <li>Brooke Johnson</li>
927                             <li>Jo Ransom</li>
928                             <li>Nicholas Rosasco (Documentation Compiler)</li>
929                             <li>Regula Sebastiao</li>
930                         </ul>
931                     [% END # /WRAPPER tab_item team %]
932
933                     [% WRAPPER tab_panel tabname= "licenses" %]
934                         <h2>Koha</h2>
935                         <p>
936                             <a href="http://www.gnu.org/licenses/gpl-3.0.html">Koha is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.</a>
937                         </p>
938                         <h2>jQuery and jQueryUI</h2>
939                         <p>
940                             <a href="http://jquery.com/">jQuery</a> and <a href="http://jqueryui.com/">jQueryUI</a> are licensed under the <a href="http://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt">MIT license</a>
941                         </p>
942
943                         <h2>Bootstrap</h2>
944                         <p>
945                             <a href="https://getbootstrap.com/">Bootstrap</a> code and <a href="http://glyphicons.com">Glyphicons Free</a> licensed under the <a href="https://github.com/twbs/bootstrap/blob/master/LICENSE">MIT license</a>.
946                         </p>
947
948                         <h2>Bootstrap Icons</h2>
949                         <p>
950                             <a href="https://icons.getbootstrap.com/">Bootstrap Icons</a> licensed under the <a href="https://github.com/twbs/icons/blob/main/LICENSE.md">MIT license</a>.
951                         </p>
952
953                         <h2>Famfamfam iconset</h2>
954                         <ul>
955                             <li>
956                                 <a href="http://www.famfamfam.com/lab/icons/silk/">FamFamFam Site</a>
957                             </li>
958                             <li>
959                                 <a href="http://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 License</a>
960                             </li>
961                         </ul>
962                         <h2>The Bridge Material Type Icon Set</h2>
963                         <ul>
964                             <li>
965                                 <a href="http://apps.carleton.edu/campus/library/bridge_icons/">Bridge Material Type Icons Project</a>
966                             </li>
967                             <li>The Bridge Material Type Icon Set is licensed under a
968                             <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/">Creative Commons Attribution-ShareAlike 2.5 License</a>
969                             by the Bridge Consortium of Carleton College and St. Olaf College.</li>
970                         </ul>
971
972                         <h2>jQuery Bar Rating Plugin</h2>
973                         <p>
974                             jQuery Bar Rating Plugin v1.22 by <a href="http://antenna.io/demo/jquery-bar-rating/examples/">Antenna.io</a> is licensed under the <a href="http://en.wikipedia.org/wiki/MIT_License">MIT License</a>.
975                         </p>
976                         <p>
977                             Copyright &copy; 2012-2016 <a href="http://antenna.io">Kazik Pietruszewski</a>
978                         </p>
979
980                         <h2>jQuery insertAtCaret Plugin</h2>
981                         <p>
982                             jQuery insertAtCaret Plugin v1.0 by the phpMyAdmin devel team is licensed under the <a href="http://www.gnu.org/licenses/gpl.html">GPL License</a>.
983                         </p>
984                         <p>
985                             Copyright &copy; 2003-2010 phpMyAdmin devel team
986                         </p>
987
988                         <h2>jQuery treetable Plugin</h2>
989                         <p>
990                             The <a href="http://ludo.cubicphuse.nl/jquery-treetable/">jQuery treetable Plugin 3.1.0</a> is released under MIT license by Ludo van den Boom.
991                         </p>
992
993                         <h2>OpenJS Keyboard Shortcuts Library</h2>
994                         <p>
995                             The <a href="http://www.openjs.com/scripts/events/keyboard_shortcuts/">OpenJS keyboard shortcuts library</a> by Binny V A is licensed under the BSD license.
996                         </p>
997
998                         <h2>jquery.dataTables.grouping.js</h2>
999                         <p>
1000                             The <a href="https://code.google.com/p/jquery-datatables-row-grouping/">jquery.dataTables.grouping.js</a> plugin by Jovan Popovic is licensed under the BSD and GPL v2 license.
1001                         </p>
1002
1003                         <h2>jQuery Colvis plugin</h2>
1004                         <p>
1005                             The <a href="http://datatables.net/extensions/colvis/">controls for column visiblity in DataTables</a>
1006                             by Allan Jardine is licensed under the BSD 3 and GPL v2 license.
1007                         </p>
1008
1009                         <h2>jQuery Multiple Select Plugin</h2>
1010                         <p>
1011                             The <a href="https://multiple-select.wenzhixin.net.cn/">jQuery Multiple Select plugin</a> by Zhixin Wen is licensed under the MIT license.
1012                         </p>
1013
1014                         <h2>Javascript Diff Algorithm</h2>
1015                         <p>
1016                             The <a href="http://ejohn.org/projects/javascript-diff-algorithm/">Javascript Diff Algorithm</a> plugin by John Resig is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.
1017                         </p>
1018
1019                         <h2>jQuery Validation Plugin</h2>
1020                         <p>
1021                             The <a href="http://jqueryvalidation.org/">jQuery Validation Plugin</a> written and maintained by Jörn Zaefferer is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.
1022                         </p>
1023
1024                         <h2>TinyMCE WYSIWYG editor</h2>
1025                         <p>
1026                             The <a href="https://www.tiny.cloud/">TinyMCE WYSIWYG editor v5.9.2 </a> by Tiny Technologies, Inc. is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt">LGPL v2.1</a>.
1027                         </p>
1028
1029                         <h2>Font Awesome</h2>
1030                         <p>
1031                             <a href="http://fontawesome.com/v4/">Font Awesome 4.7.0</a> by Dave Gandy is licensed under the <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a> and the <a href="http://opensource.org/licenses/mit-license.html">MIT License</a>.
1032                         </p>
1033
1034                         <h2>CodeMirror editing library</h2>
1035                         <p>
1036                             The <a href="http://codemirror.net/">CodeMirror editing library</a> by Marijn Haverbeke is licensed under an <a href="http://codemirror.net/LICENSE">MIT license</a>.
1037                         </p>
1038
1039                         <h2>FileSaver library</h2>
1040                         <p>
1041                             The <a href="https://github.com/eligrey/FileSaver.js/">FileSaver library</a> by Eli Grey is licensed under an <a href="https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md">MIT license</a>.
1042                         </p>
1043
1044                         <h2>Require.js JS module system</h2>
1045                         <p>
1046                             The <a href="http://requirejs.org/">Require.js JS module system</a> by The Dojo Foundation is licensed under an <a href="https://github.com/jrburke/requirejs/blob/master/LICENSE">MIT license</a>.
1047                         </p>
1048
1049                         <h2>OAI xslt stylesheet</h2>
1050                         <p>
1051                             The included OAI.xslt file by the <a href="http://dspace.org/">DSpace project</a> is licensed under a <a href="http://www.dspace.org/license/">BSD License</a>.
1052                         </p>
1053
1054                         <h2>OpenAPI 2.0 schema</h2>
1055                         <p>
1056                             The included <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/schemas/v2.0/schema.json">api/swagger-v2-schema.json</a> file is licensed under the <a href="https://github.com/OAI/OpenAPI-Specification/tree/master/schemas/v2.0">Apache License, Version 2.0</a>, by the <a href="https://www.openapis.org/about">OpenAPI Initiative (OAI)</a>.
1057                         </p>
1058
1059                         <h2>Select2</h2>
1060                         <p>
1061                             The <a href="http://select2.github.io/select2/">Select2</a> library is licensed under <a href="https://github.com/select2/select2/blob/stable/3.5/LICENSE">the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License")</a>.
1062                         </p>
1063
1064                         <h2>jquery.tablednd.js</h2>
1065                         <p>
1066                             The <a href="https://github.com/isocra/TableDnD">TableDnD plug-in for jQuery</a> by Denis Howlett is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.
1067                         </p>
1068
1069                         <h2>Leaflet</h2>
1070                         <p>
1071                             The <a href="http://leafletjs.com">Leaflet</a> JavaScript library by Vladimir Agafonkinis licensed under the <a href="https://github.com/Leaflet/Leaflet/blob/master/LICENSE">BSD License</a>.
1072                         </p>
1073
1074                         <h2>jquery.emojiarea.js</h2>
1075                         <p>
1076                             The <a href="https://github.com/diy/jquery-emojiarea">Emojiarea plug-in for jQuery</a> by DIY Co is licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">the Apache License, Version 2.0</a>.
1077                         </p>
1078
1079                         <h2>JSZip</h2>
1080                         <p>
1081                             The <a href="https://stuk.github.io/jszip/">JSZip</a> JavaScript library is licensed under both the <a href="https://github.com/Stuk/jszip/blob/master/LICENSE.markdown">MIT and GPLv3 Licenses</a>.
1082                         </p>
1083
1084                         <h2>D3.js</h2>
1085                         <p>
1086                             <a href="https://d3js.org/">D3.js v3.5.17</a> is a JavaScript library for manipulating documents based on data. It is under the <a href="https://github.com/d3/d3/blob/master/LICENSE">BSD 3-clause Licence</a>
1087                         </p>
1088
1089                         <h2>C3.js</h2>
1090                         <p>
1091                             <a href="http://c3js.org/">C3.js v0.4.11</a> is a D3-based reusable chart library under the <a href="https://opensource.org/licenses/mit-license.php">MIT licence</a>
1092                         </p>
1093
1094                         <h2>Font Face Observer</h2>
1095                         <p>
1096                             <a href="https://github.com/bramstein/fontfaceobserver">Font Face Observer</a> is a JavaScript library by Bram Stein licensed under the <a href="https://github.com/bramstein/fontfaceobserver/blob/master/LICENSE">BSD License</a>.
1097                         </p>
1098
1099                         <h2>Noto fonts</h2>
1100                         <p>
1101                             <a href="https://github.com/googlei18n/noto-fonts">Noto</a> by Google is a family of fonts licensed under the <a href="http://scripts.sil.org/OFL">SIL Open Font License (OFL) v1.1</a>.
1102                         </p>
1103
1104                         <h2>HC Sticky</h2>
1105                         <p>
1106                             <a href="http://somewebmedia.com/hc-sticky/">HC Sticky</a> by Some Web Media is a JavaScript library that makes any element on your page visible while you scroll, licensed under the <a href="https://github.com/somewebmedia/hc-sticky/blob/master/LICENSE">MIT license</a>.
1107                         </p>
1108
1109                         <h2>kjua</h2>
1110                         <p>
1111                             <a href="https://larsjung.de/kjua/">kjua</a> by Lars Jung is a JavaScript library that generates QR codes, licensed under the <a href="https://github.com/lrsjng/kjua/blob/master/README.md">MIT license</a>.
1112                         </p>
1113
1114                         <h2>Verovio</h2>
1115                         <p>
1116                             <a href="https://www.verovio.org/index.xhtml">Verovio</a> is developed by the Swiss RISM Office with the support of the Swiss National Science Foundation, licensed under the <a href="http://www.gnu.org/licenses/lgpl-3.0.html">LGPL v3.0</a>.
1117                         </p>
1118
1119                         <h2>JavaScript Cookie</h2>
1120                         <p>
1121                             <a href="https://github.com/js-cookie/js-cookie">JavaScript Cookie</a> is a "simple, lightweight JavaScript API for handling cookies," licensed under the <a href="https://github.com/js-cookie/js-cookie/blob/master/LICENSE">MIT license</a>.
1122                         </p>
1123
1124                         <h2>Day.js</h2>
1125                         <p>
1126                             <a href="https://day.js.org/">Day.js</a> licensed under the <a href="https://github.com/iamkun/dayjs/blob/dev/LICENSE">MIT license</a>.
1127                         </p>
1128
1129                         <h2>Chocolat.js</h2>
1130                         <p>
1131                             <a href="http://chocolat.insipi.de">Chocolat.js</a> licensed under the <a href="https://github.com/nicolas-t/Chocolat/blob/master/LICENSE">GPL v3 license</a>.
1132                         </p>
1133
1134                         <h2>Enquire.js</h2>
1135                         <p>
1136                             <a href="https://wicky.nillia.ms/enquire.js">Enquire.js</a> licensed under the <a href="https://github.com/WickyNilliams/enquire.js/blob/master/LICENSE">MIT license</a>.
1137                         </p>
1138
1139                     [% END # /WRAPPER tab_item licenses %]
1140
1141                     [% WRAPPER tab_panel tabname= "translations" %]
1142                         <h2>Translation</h2>
1143                         <ul>
1144                             <li>العربية (Arabic) Version 3.2 to 3.4, 3.16 & 3.18 by KnowledgeWare Technologies; Versions 3.6 to 3.14 by Arabic Koha support team: Karam Qubsi, Kouider Bounama, Sham Bajaa, Ghofran Alshami, Chrestian Aboud, Fatema Salem and Duaa Bazzazi.
1145                             <li>&#4768;&#4635;&#4653;&#4763; (Amharic) Getway II Ethiopia Co. (Yohannes Mulugeta (Team Leader), Tegene Assefa, Abiyot Bayou)</li>
1146                             <li>Armenian Tigran Zargaryan</li>
1147                             <li>&#1041;&#1098;&#1083;&#1075;&#1072;&#1088;&#1089;&#1082;&#1080; (Bulgarian) Radoslav Kolev</li>
1148                             <li>euskara (Basque) Fernando Berrizbeitia, the librarians of Eima Katalogoa, Tabakalera International Contemporary Culture Centre, and Nere Erkiaga</li>
1149                             <li>&#2476;&#2494;&#2434;&#2482;&#2494; (Bengali) Parthasarathi Mukhopadhyay</li>
1150                             <li>&#20013;&#25991; (Chinese)</li>
1151                             <li>Hrvatski (Croatian)</li>
1152                             <li>&#x010D;e&#353;tina (Czech)</li>
1153                             <li>D&aelig;nsk (Danish)</li>
1154                             <li>Nederlands-Nederland (Dutch-The Netherlands) Ronald Wijlens, Saxion University</li>
1155                             <li>Nederlands-Belgi&euml; (Dutch-Belgium)</li>
1156                             <li>English</li>
1157                             <li>suomi, suomen kieli (Finnish) Pasi Korkalo</li>
1158                             <li>Fran&ccedil;ais (French) <a href="http://www.koha-fr.org/content/lassociation-kohala">Kohala</a>, Pascale Nalon (ENSMP), and many more </li>
1159                             <li>Galego (Galician) Ignacio Javier</li>
1160                             <li>Deutsch (German) Friedrich zur Hellen, Robert Hillig, Katrin Fischer, Beda Szukics, Mirko Tietgen and Marc Véron</li>
1161                             <li>&#949;&#955;&#955;&#951;&#957;&#953;&#954;&#940; (Greek, Modern [1453- ]) Koha Hellenic Users' Group (Georgia Katsarou, Dimitris Antonakis, Eugenios Papadopoulos), Theodoros Theodoropoulos, Panoraia Gaitanou and Kiriaki Roditi</li>
1162                             <li>&#1506;&#1489;&#1512;&#1497;&#1514; (Hebrew)</li>
1163                             <li>&#2361;&#2367;&#2344;&#2381;&#2342;&#2368; (Hindi)</li>
1164                             <li>Magyar (Hungarian)Agnes Imecs</li>
1165                             <li>Norsk Bokmål (Norwegian) Axel Bojer and Thomas Gramstad</li>
1166                             <li>Norsk Nynorsk (Norwegian) Unni Knutsen and Marit Kristine Ådland</li>
1167                             <li>(Indonesian)</li>
1168                             <li>Italiano (Italian) for 3.2: Zeno Tajoli, Pietro Gozzetti and Paolo Pozzan; for 3.4 and more: Zeno Tajoli, Stefano Bargioni, Paolo Bizzarri</li>
1169                             <li>&#26085;&#26412;&#35486; (Japanese)</li>
1170                             <li>&#54620;&#44397;&#50612; (Korean)</li>
1171                             <li>&#3221;&#3240;&#3277;&#3240;&#3233; (kanna&#7693;a)</li>
1172                             <li>Latina (Latin)</li>
1173                             <li>Lao Anousak Anthony Souphavanh</li>
1174                             <li>M&#257;ori</li>
1175                             <li>&#3374;&#3378;&#3375;&#3390;&#3379;&#3330; (Malayalam)</li>
1176                             <li>&#1601;&#1575;&#1585;&#1587;&#1609; (Persian)</li>
1177                             <li>&#2835;&#2908;&#2879;&#2822; (&#x014D;&#7771;iy&#257;)</li>
1178                             <li>Polski (Polish)</li>
1179                             <li>Portugu&ecirc;s (Portuguese)</li>
1180                             <li>Rom&acirc;n&#259; (Romanian)</li>
1181                             <li>&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081; (Russian) Victor Titarchuk and Serhij Dubyk</li>
1182                             <li>Espa&ntilde;ol (Spanish) Bernardo González Kriegel, Héctor Castro and Tomás Cohen Arazi, with the help of the koha-es community.</li>
1183                             <li>Svenska (Swedish)</li>
1184                             <li>Tetun (Tetum) Karen Myers</li>
1185                             <li>&#3616;&#3634;&#3625;&#3634;&#3652;&#3607;&#3618; (Thai)</li>
1186                             <li>T&uuml;rk&ccedil;e (Turkish) pre-3.8: Selma Aslan; for 3.8+, Suleyman Demirel University (Ugur Bulgan, Onur Erdem, Kemal Caner Bayrakci, and Alper Tutunsatar)</li>
1187                             <li>&#1575;&#1585;&#1583;&#1608;(Urdu) Ata ur Rehman</li>
1188                             <li>&#1059;&#1082;&#1088;&#1072;&#1111;&#1085;&#1089;&#1100;&#1082;&#1072; (Ukrainian) Victor Titarchuk and Serhij Dubyk</li>
1189                         </ul>
1190                     [% END # /WRAPPER tab_item translations %]
1191
1192                     [% WRAPPER tab_panel tabname= "history" %]
1193                         <h2>Koha history timeline</h2>
1194                         [% IF ! timeline_read_error %]
1195                             <table style="cursor:pointer">
1196                                 <thead>
1197                                     <tr>
1198                                         <td  style="font-weight:bold;" >Date</td>
1199                                         <td  style="font-weight:bold;" >Description</td>
1200                                     </tr>
1201                                 </thead>
1202                                 [% FOREACH tabl IN table2 %]
1203                                     <tr class="[% loop.parity | html %]">
1204                                         [% FOREACH ro IN tabl.row2 %]
1205                                             <td>[% ro.date | html %]</td>
1206                                             <td>[% ro.desc | html %]</td>
1207                                         [% END %]
1208                                     </tr>
1209                                 [% END %]
1210                             </table>
1211                         [% ELSE %]
1212                             <div class="dialog alert">
1213                                 Could not read the history.txt file. Please make sure &lt;docdir&gt; is correctly defined in koha-conf.xml.
1214                             </div>
1215                         [% END %]
1216                     [% END # /WRAPPER tab_item history %]
1217
1218                     [% WRAPPER tab_panel tabname= "dedications" %]
1219                         <h2>22.11</h2>
1220                         <p>
1221                             The Koha Community would like to dedicate the release of Koha 22.11 to Rosalie Blake.
1222                         </p>
1223                         <p>
1224                             Rosalie was the Head Librarian at Horowhenua Library Trust when Koha was started and without her Koha
1225                             would not exist. She was an inspiring leader and innovator and took the risk of her career entrusting
1226                             Chris, Joanne, Rachel and Simon to deliver the original project that became the international sensation
1227                             we all know and love.
1228                         </p>
1229                         <p>
1230                             She was also a practicing Justice of the Peace, a stalwart of the Levin Pottery Club and much loved
1231                             mother of Simon and Jeremy, and grandmother of Ben, Toby, Anna, Charlotte and Billy.
1232                         </p>
1233                     [% END # /WRAPPER tab_item dedications %]
1234                 [% END %]
1235             [% END # /WRAPPER abouttabs %]
1236         </div> <!-- /.col-md-12 -->
1237     </div> <!-- /.row -->
1238
1239 [% MACRO jsinclude BLOCK %]
1240     <script>
1241         $(document).ready(function(){
1242             selectBsTabByHash( "abouttabs" );
1243         });
1244     </script>
1245 [% END %]
1246
1247 <!-- the main div is closed in intranet-bottom.inc -->
1248 [% INCLUDE 'intranet-bottom.inc' %]