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