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