Bug 27936: Clarify AllowItemsOnHoldCheckoutSIP syspref help text
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / overdrive.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Branches %]
4 [% USE HtmlTags %]
5 [% SET footerjs = 1 %]
6 [% INCLUDE 'doc-head-open.inc' %]
7 <title>Koha &rsaquo; Administration &rsaquo; OverDrive library authnames</title>
8 [% INCLUDE 'doc-head-close.inc' %]
9 </head>
10
11 <body id="admin_overdrive" class="admin">
12
13 [% INCLUDE 'header.inc' %]
14 [% INCLUDE 'prefs-admin-search.inc' %]
15
16 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo;  <a href="/cgi-bin/koha/admin/overdrive.pl">OverDrive library authnames</a>
17 </div>
18
19 <div class="main container-fluid">
20     <div class="row">
21         <div class="col-sm-10 col-sm-push-2">
22             <main>
23
24                 <h2>OverDrive library authnames</h2>
25
26                 <form action="/cgi-bin/koha/admin/overdrive.pl" name="overdrive_form" method="post" class="validated">
27                     <input type="hidden" name="op" value="update" />
28
29                     <table id="od_info">
30                         <thead>
31                             <tr>
32                                 <th>Library</th>
33                                 <th>Authname</th>
34                             </tr>
35                         </thead>
36                         <tbody>
37                             [% FOREACH b IN branches %]
38                             <tr>
39                                 <td>
40                                     [% Branches.GetName( b.branchcode ) | html %]
41                                     <input type="hidden" name="branchcode" value="[% b.branchcode | html %]" />
42                                 </td>
43                                 <td>
44                                     <input type="text" name="authname" value="[% b.authname | html %]" />
45                                 </td>
46                             </tr>
47                             [% END %]
48                         </tbody>
49                     </table>
50                     <div class="action">
51                         <input type="submit" value="Submit" />
52                     </div>
53                 </form>
54
55             </main>
56         </div> <!-- /.col-sm-10.col-sm-push-2 -->
57
58         <div class="col-sm-2 col-sm-pull-10">
59             <aside>
60                 [% INCLUDE 'admin-menu.inc' %]
61             </aside>
62         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
63     </div> <!-- /.row -->
64
65 [% MACRO jsinclude BLOCK %]
66     [% Asset.js("js/admin-menu.js") | $raw %]
67     [% INCLUDE 'datatables.inc' %]
68     <script>
69         $(document).ready(function() {
70             $("#od_info").dataTable($.extend(true, {}, dataTablesDefaults, {
71                 "aoColumnDefs": [
72                     { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
73                 ],
74                 "sPaginationType": "full"
75             }));
76         });
77     </script>
78 [% END %]
79
80 [% INCLUDE 'intranet-bottom.inc' %]