Bug 34931: Remove fieldset/legend in favor of div/h3
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / virtualshelves / downloadshelf.tt
1 [% USE raw %]
2 [% PROCESS 'i18n.inc' %]
3 [% INCLUDE 'doc-head-open.inc' %]
4 <title>[% FILTER collapse %]
5     [% t("Download list") | html %] &rsaquo;
6     [% t("Lists") | html %] &rsaquo;
7     [% t("Koha") | html %]
8 [% END %]</title>
9 [% INCLUDE 'doc-head-close.inc' %]
10 </head>
11 <body id="lists_downloadshelf" class="lists" style="padding:1em;">
12
13 [% FOR m IN messages %]
14     <div class="dialog [% m.type | html %]">
15         [% SWITCH m.code %]
16         [% CASE 'unauthorized' %]
17             <span>You do not have permission to view this list.</span>
18         [% CASE 'does_not_exist' %]
19             <span>This list does not exist.</span>
20         [% CASE %]
21             <span>[% m.code | html %]</span>
22         [% END %]
23     </div>
24 [% END %]
25
26
27
28 [% IF ( format ) %]
29     <p>Your download should begin automatically.</p>
30 [% ELSE %]
31 <div id="export" class="detailtagcell">    <form method="post" action="/cgi-bin/koha/virtualshelves/downloadshelf.pl">
32 <form method="post" action="/cgi-bin/koha/virtualshelves/downloadshelf.pl">
33         <fieldset class="rows">
34         <legend><h1>Download list</h1></legend>
35         <ol><li>
36     <label for="format">Format: </label>
37         <select name="format" id="format">
38         <option value="">-- Choose format --</option>
39         <option value="iso2709">MARC</option>
40             <option value="ris">RIS</option>
41             <option value="bibtex">BibTex</option>
42             [% FOREACH csv_profile IN csv_profiles %]
43             <option value="[% csv_profile.export_format_id | html %]">CSV - [% csv_profile.profile | html %]</option>
44             [% END %]
45         </select>
46         </li></ol>
47         </fieldset>
48         <fieldset class="action"><input type="hidden" name="shelfid" value="[% shelfid | html %]" />
49     <input type="submit" name="save" class="btn btn-primary" value="Save" />  <a class="cancel close" href="#">Cancel</a>
50     </fieldset>
51     </form>
52
53 [% END %]
54 </body>
55 </html>