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