Bug 9680 - cart aligned right in CCSR
[koha.git] / koha-tmpl / opac-tmpl / prog / en / modules / opac-downloadshelf.tt
1 [% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog › Download list[% INCLUDE 'doc-head-close.inc' %]
2 <script type="text/javascript">//<![CDATA[
3         $(document).ready(function(){
4                 $(".close").html(_("Close this window"));
5         });
6 //]]>
7 </script>
8 </head>
9 <body id="opac-downloadlist" class="popup">
10 <div id="userdownloadshelf" class="container">
11 [% UNLESS ( invalidlist ) %]
12         [% IF ( format ) %]
13             <p>Your download should begin automatically.</p>
14         [% ELSE %]
15         <form method="post" action="/cgi-bin/koha/opac-downloadshelf.pl">
16         <fieldset class="rows">
17                 <ol><li><label for="format">Download list:</label>
18                 <select name="format" id="format">
19             <option value="">-- Choose format --</option>
20             <option value="ris">RIS (Zotero, EndNote, others)</option>
21             <option value="bibtex">BibTeX</option>
22             <option value="iso2709">MARC</option>
23                     [% FOREACH csv_profile IN csv_profiles %]
24                     <option value="[% csv_profile.export_format_id %]">CSV - [% csv_profile.profile %]</option>
25                     [% END %]
26
27                 </select></li></ol>
28         </fieldset>
29         <fieldset class="action">       <input type="hidden" name="shelfid" value="[% shelfid | html %]" />
30                 <input type="submit" name="save" value="Go" /></fieldset>
31             </form>
32
33             <p><a class="button close" href="/cgi-bin/koha/opac-shelves.pl">Back to lists</a></p>
34
35         [% END %]
36 [% ELSE %]
37         <div class="dialog alert">
38                 <p>You do not have permission to download this list.</p>
39         </div>
40         <p><a class="button close" href="/cgi-bin/koha/opac-shelves.pl">Back to lists</a></p>
41 [% END %]
42 </div>
43 </body>
44 </html>