Bug 10552: make several sysprefs available to the OPAC login page
[koha.git] / koha-tmpl / opac-tmpl / prog / en / modules / opac-downloadcart.tt
1 [% USE Koha %]
2 [% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog › Download cart[% INCLUDE 'doc-head-close.inc' %]
3 </head>
4 <body id="opac-downloadcart" class="popup">
5 <div id="userdownloadcart" class="container">[% IF ( format ) %]
6     <p>Your download should begin automatically.</p>
7 [% ELSE %]
8 <form method="post" action="/cgi-bin/koha/opac-downloadcart.pl">
9         <fieldset class="rows">
10         <ol><li><label for="format">Download cart:</label>
11         <select name="format" id="format">
12         <option value="">-- Choose format --</option>
13         <option value="ris">RIS (Zotero, EndNote, others)</option>
14         <option value="bibtex">BibTeX</option>
15         <option value="iso2709">MARC</option>
16             [% FOREACH csv_profile IN csv_profiles %]
17             <option value="[% csv_profile.export_format_id %]">CSV - [% csv_profile.profile %]</option>
18             [% END %]
19
20         </select></li></ol>
21 </fieldset>
22 <fieldset class="action">
23         <input type="hidden" name="bib_list" value="[% bib_list | html %]" />
24         <input type="submit" name="save" value="Go" />
25 </fieldset>
26     </form>
27
28     <p><a class="button close" href="#">Close this window</a></p>
29
30 [% END %]
31 </body>
32 </html>