Bug 33924: Improve translation of title tags: Rotating collections
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / rotating_collections / rotatingCollections.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Branches %]
4 [% PROCESS 'i18n.inc' %]
5 [% SET footerjs = 1 %]
6 [% INCLUDE 'doc-head-open.inc' %]
7 <title>[% FILTER collapse %]
8     [% t("Rotating collections") | html %] &rsaquo;
9     [% t("Tools") | html %] &rsaquo;
10     [% t("Koha") | html %]
11 [% END %]</title>
12 [% INCLUDE 'doc-head-close.inc' %]
13 </head>
14
15 <body id="rcoll_rotatingCollections" class="tools rcoll">
16 [% WRAPPER 'header.inc' %]
17     [% INCLUDE 'cat-search.inc' %]
18 [% END %]
19
20 [% WRAPPER 'sub-header.inc' %]
21     [% WRAPPER breadcrumbs %]
22         [% WRAPPER breadcrumb_item %]
23             <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a>
24         [% END %]
25         [% WRAPPER breadcrumb_item bc_active= 1 %]
26             <span>Rotating collections</span>
27         [% END %]
28     [% END #/ WRAPPER breadcrumbs %]
29 [% END #/ WRAPPER sub-header.inc %]
30
31 <div class="main container-fluid">
32     <div class="row">
33         <div class="col-sm-10 col-sm-push-2">
34             <main>
35
36                 [% INCLUDE 'rotating-collections-toolbar.inc' %]
37
38                 <h1>Rotating collections</h1>
39                 <div>
40                     [% IF ( collectionsLoop ) %]
41                         <div class="page-section">
42                             <table id="rotating-collections-table">
43                                 <thead>
44                                     <tr>
45                                         <th>Title</th>
46                                         <th>Description</th>
47                                         <th>Current library</th>
48                                         <th>&nbsp;</th>
49                                     </tr>
50                                 </thead>
51                                 <tbody>
52                                 [% FOREACH collectionsLoo IN collectionsLoop %]
53                                     <tr>
54                                         <td><a href="/cgi-bin/koha/rotating_collections/addItems.pl?colId=[% collectionsLoo.colId | uri %]">[% collectionsLoo.colTitle | html %]</a></td>
55                                         <td>[% collectionsLoo.colDesc | html %]</td>
56                                         <td>[% Branches.GetName( collectionsLoo.colBranchcode ) | html %]</td>
57                                         <td>
58                                         <div class="btn-group dropup">
59                                             <a class="btn btn-default btn-xs dropdown-toggle" id="collectionsactions[% collectionsLoo.colId | html %]" role="button" data-toggle="dropdown" href="#">
60                                             Actions <b class="caret"></b></a>
61                                             <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="collectionsactions[% collectionsLoo.colId | html %]">
62                                                 <li><a href="/cgi-bin/koha/rotating_collections/addItems.pl?colId=[% collectionsLoo.colId | uri %]"><i class="fa fa-plus"></i> Manage items</a></li>
63                                                 <li><a href="/cgi-bin/koha/rotating_collections/transferCollection.pl?colId=[% collectionsLoo.colId | uri %]"><i class="fa-solid fa-right-left"></i> Transfer</a></li>
64                                                 <li><a href="/cgi-bin/koha/rotating_collections/editCollections.pl?action=edit&amp;colId=[% collectionsLoo.colId | uri %]"><i class="fa-solid fa-pencil" aria-hidden="true"></i> Edit</a></li>
65                                                 <li><a class="confirmdelete" href="/cgi-bin/koha/rotating_collections/editCollections.pl?action=delete&amp;colId=[% collectionsLoo.colId | html %]"><i class="fa fa-trash-can"></i> Delete</a></li>
66                                             </ul>
67                                         </div>
68                                         </td>
69                                     </tr>
70                                 [% END %]
71                                 </tbody>
72                             </table>
73                         </div> <!-- /.page-section -->
74                     [% ELSE %]
75                         <div class="dialog message">There are no collections currently defined.</div>
76                     [% END %]
77                 </div>
78
79             </main>
80         </div> <!-- /.col-sm-10.col-sm-push-2 -->
81
82         <div class="col-sm-2 col-sm-pull-10">
83             <aside>
84                 [% INCLUDE 'tools-menu.inc' %]
85             </aside>
86         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
87      </div> <!-- /.row -->
88
89 [% MACRO jsinclude BLOCK %]
90     [% INCLUDE 'datatables.inc' %]
91     [% Asset.js("js/tools-menu.js") | $raw %]
92     [% Asset.js("js/rotating-collections.js") | $raw %]
93 [% END %]
94
95 [% INCLUDE 'intranet-bottom.inc' %]