Bug 21082: (RM follow-up) address QA issues
[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; Library OverDrive Info &rsaquo;</title>
8 [% INCLUDE 'doc-head-close.inc' %]
9 [% Asset.css("css/datatables.css") | $raw %]
10 </head>
11
12 <body id="admin_overdrive" class="admin">
13 [% INCLUDE 'header.inc' %]
14
15 <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">Library OverDrive Info</a> &rsaquo;
16 </div>
17
18 <div id="doc3" class="yui-t2">
19
20 <div id="bd">
21     <div id="yui-main">
22     <div class="yui-b">
23
24 <form action="/cgi-bin/koha/admin/overdrive.pl" name="overdrive_form" method="post" class="validated">
25     <input type="hidden" name="op" value="update" />
26     <fieldset class="rows">
27         <legend>
28             OverDrive
29         </legend>
30         <table id="od_info">
31             <thead>
32                 <th>Branch</th>
33                 <th>Authname</th>
34             </thead>
35             <tbody>
36                 [% FOREACH b IN branches %]
37                 <tr>
38                 <td>
39                     [% Branches.GetName( b.branchcode ) | html %]
40                     <input type="hidden" name="branchcode" value="[% b.branchcode | html %]" />
41                 </td>
42                 <td>
43                     <input type="text" name="authname" value="[% b.authname | html %]" />
44                 </td>
45                 </tr>
46                 [% END %]
47             </tbody>
48         </table>
49         <input type="submit" value="Submit">
50 </form>
51
52 </div>
53 </div>
54 <div class="yui-b">
55 [% INCLUDE 'admin-menu.inc' %]
56 </div>
57 </div>
58
59 [% MACRO jsinclude BLOCK %]
60     [% Asset.js("js/admin-menu.js") | $raw %]
61     [% INCLUDE 'datatables.inc' %]
62     [% INCLUDE 'columns_settings.inc' %]
63     <script type="text/javascript">
64     </script>
65 [% END %]
66 [% INCLUDE 'intranet-bottom.inc' %]