Bug 5917 : Converted templates
[koha.git] / koha-tt / intranet-tmpl / prog / en / modules / basket / downloadcart.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Download cart</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 </head>
5 <body style="padding:1em;">
6 [% IF ( format ) %]
7     <p>Your download should begin automatically.</p>
8 [% ELSE %]
9 <form method="post" action="/cgi-bin/koha/basket/downloadcart.pl">
10 <fieldset class="rows">
11         <legend>Download cart</legend>
12         <ol><li>
13         <label for="format">Format:</label>
14         <select name="format" id="format">
15             <option value="">-- Choose Format --</option>
16             <option value="iso2709">iso2709</option>
17             <option value="ris">RIS</option>
18             <option value="bibtex">BibTex</option>
19             [% FOREACH csv_profile IN csv_profiles %]
20             <option value="[% csv_profile.export_format_id %]">CSV - [% csv_profile.profile %]</option>
21             [% END %]
22
23         </select></li>
24         </ol>
25         </fieldset>
26         <fieldset class="action">
27         <input type="hidden" name="bib_list" value="[% bib_list %]" />
28         <input type="submit" name="save" value="Save" /> <a class="cancel close" href="#">Cancel</a>
29         </fieldset>
30     </form>
31
32 [% END %]
33 </body>
34 </html>