Wainui Witika-Park
7fa9a60406
Swapped the order of the page titles to have the unique information first, i.e. the name of the specific page displays first, and the name of the website (e.g. Koha) displays at the end. To test: 1) Apply patch 2) Ensure each of the files in the authorities, basket and batch folders are swapped around to display the most unique information first, and the website name is at the end 3) Ensure the pages displayed on the Staff Client that correspond to these files also display the changes Sponsored-by: Catalyst IT Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Henry Bolshaw <bolshawh@parliament.uk> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
34 lines
1.1 KiB
Text
34 lines
1.1 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Download cart › Koha</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">MARC</option>
|
|
<option value="ris">RIS</option>
|
|
<option value="bibtex">BibTex</option>
|
|
[% FOREACH csv_profile IN csv_profiles %]
|
|
<option value="[% csv_profile.export_format_id | html %]">CSV - [% csv_profile.profile | html %]</option>
|
|
[% END %]
|
|
|
|
</select></li>
|
|
</ol>
|
|
</fieldset>
|
|
<fieldset class="action">
|
|
<input type="hidden" name="bib_list" value="[% bib_list | html %]" />
|
|
<input type="submit" name="save" value="Save" /> <a class="cancel close" href="#">Cancel</a>
|
|
</fieldset>
|
|
</form>
|
|
|
|
[% END %]
|
|
</body>
|
|
</html>
|