db4af00ce1
Signed-off-by: Paul Poulain <paul.poulain@biblibre.com> This patch also fixes some vocabulary replacing "shelf" by "list"
33 lines
1.2 KiB
Text
33 lines
1.2 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Download shelf</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
</head>
|
|
<body id="lists_downloadshelf" class="lists" style="padding:1em;">
|
|
[% IF ( format ) %]
|
|
<p>Your download should begin automatically.</p>
|
|
[% ELSE %]
|
|
<div id="export" class="detailtagcell"> <form method="post" action="/cgi-bin/koha/virtualshelves/downloadshelf.pl">
|
|
<form method="post" action="/cgi-bin/koha/virtualshelves/downloadshelf.pl">
|
|
<fieldset class="rows">
|
|
<legend>Download list</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="shelfid" value="[% shelfid %]" />
|
|
<input type="submit" name="save" value="Save" /> <a class="cancel close" href="#">Cancel</a>
|
|
</fieldset>
|
|
</form>
|
|
|
|
[% END %]
|
|
</body>
|
|
</html>
|