Bug 32097: Consistent classes for primary buttons: Lists
[koha-ffzg.git] / koha-tmpl / intranet-tmpl / prog / en / modules / virtualshelves / downloadshelf.tt
index 357ebe4..ebc7d8d 100644 (file)
@@ -1,31 +1,47 @@
 [% INCLUDE 'doc-head-open.inc' %]
-<title>Koha &rsaquo; Download shelf</title>
+<title>Download list &rsaquo; Koha</title>
 [% INCLUDE 'doc-head-close.inc' %]
 </head>
-<body style="padding:1em;">
+<body id="lists_downloadshelf" class="lists" style="padding:1em;">
+
+[% FOR m IN messages %]
+    <div class="dialog [% m.type | html %]">
+        [% SWITCH m.code %]
+        [% CASE 'unauthorized' %]
+            <span>You do not have permission to view this list.</span>
+        [% CASE 'does_not_exist' %]
+            <span>This list does not exist.</span>
+        [% CASE %]
+            <span>[% m.code | html %]</span>
+        [% END %]
+    </div>
+[% END %]
+
+
+
 [% 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>
+        <legend><h1>Download list</h1></legend>
        <ol><li>
-       <label for="format">Format : </label>
+    <label for="format">Format: </label>
         <select name="format" id="format">
-           <option value="">-- Choose Format --</option>
-           <option value="iso2709">iso2709</option>
+        <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 %]">CSV - [% csv_profile.profile %]</option>
+           <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="shelfid" value="[% shelfid %]" />
-       <input type="submit" name="save" value="Save" />  <a class="cancel close" href="#">Cancel</a>
-       </fieldset>
+       <fieldset class="action"><input type="hidden" name="shelfid" value="[% shelfid | html %]" />
+    <input type="submit" name="save" class="btn btn-primary" value="Save" />  <a class="cancel close" href="#">Cancel</a>
+    </fieldset>
     </form>
 
 [% END %]