Bug 33908: Improve translation of title tags: Acquisitions
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / erm / erm.tt
1 [% USE raw %]
2 [% USE To %]
3 [% USE Asset %]
4 [% USE KohaDates %]
5 [% USE TablesSettings %]
6 [% PROCESS 'i18n.inc' %]
7 [% SET footerjs = 1 %]
8 [% INCLUDE 'doc-head-open.inc' %]
9 <title>[% FILTER collapse %]
10     [% t("E-resource management") | html %] &rsaquo;
11     [% t("Koha") | html %]
12 [% END %]</title>
13 [% INCLUDE 'doc-head-close.inc' %]
14 </head>
15
16 <body id="erm_agreements" class="erm">
17 [% WRAPPER 'header.inc' %]
18     [% INCLUDE 'erm-search.inc' %]
19 [% END %]
20
21 <div id="erm"> <!-- this is closed in intranet-bottom.inc -->
22
23 [% MACRO jsinclude BLOCK %]
24     [% INCLUDE 'calendar.inc' %]
25     [% INCLUDE 'datatables.inc' %]
26     [% INCLUDE 'columns_settings.inc' %]
27     [% INCLUDE 'js-patron-format.inc' %]
28     [% INCLUDE 'js-date-format.inc' %]
29
30     <script>
31
32         const agreement_table_settings = [% TablesSettings.GetTableSettings( 'erm', 'agreements', 'agreements', 'json' ) | $raw %];
33         const license_table_settings = [% TablesSettings.GetTableSettings( 'erm', 'licenses', 'licenses', 'json' ) | $raw %];
34         const eholdings_packages_table_settings = [% TablesSettings.GetTableSettings( 'erm', 'eholdings', 'packages', 'json' ) | $raw %];
35         const eholdings_titles_table_settings = [% TablesSettings.GetTableSettings( 'erm', 'eholdings', 'titles', 'json' ) | $raw %];
36
37         const max_allowed_packet = [% To.json(max_allowed_packet) | $raw %];
38
39         const logged_in_user_lists = [% To.json(logged_in_user.virtualshelves.unblessed) | $raw %];
40
41         const logged_in_user = [% To.json(logged_in_user.unblessed) | $raw %];
42
43     </script>
44
45     [% Asset.js("js/vue/dist/erm.js") | $raw %]
46
47 [% END %]
48 [% INCLUDE 'intranet-bottom.inc' %]