Koha/koha-tmpl/intranet-tmpl/prog/en/modules/basket/downloadcart.tt
Owen Leonard 10f29a1dae Bug 2780 - Capitalize strings consistently (Staff client cart)
Correcting capitalization in the staff client's cart templates

Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
2012-04-10 10:03:24 +02:00

34 lines
1.1 KiB
Text

[% INCLUDE 'doc-head-open.inc' %]
<title>Koha &rsaquo; Download cart</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body style="padding:1em;" id="cart_downloadcart" class="cart">
[% IF ( format ) %]
<p>Your download should begin automatically.</p>
[% ELSE %]
<form method="post" action="/cgi-bin/koha/basket/downloadcart.pl">
<fieldset class="rows">
<legend>Download cart</legend>
<ol><li>
<label for="format">Format:</label>
<select name="format" id="format">
<option value="">-- Choose format --</option>
<option value="iso2709">iso2709</option>
<option value="ris">RIS</option>
<option value="bibtex">BibTex</option>
[% FOREACH csv_profile IN csv_profiles %]
<option value="[% csv_profile.export_format_id %]">CSV - [% csv_profile.profile %]</option>
[% END %]
</select></li>
</ol>
</fieldset>
<fieldset class="action">
<input type="hidden" name="bib_list" value="[% bib_list %]" />
<input type="submit" name="save" value="Save" /> <a class="cancel close" href="#">Cancel</a>
</fieldset>
</form>
[% END %]
</body>
</html>