From 49884ffd1f773c5ac36b1eaf388677f65455ce0a Mon Sep 17 00:00:00 2001
From: Katrin Fischer <Katrin.Fischer.83@web.de>
Date: Sun, 29 Sep 2013 22:02:45 +0200
Subject: [PATCH] Bug 10854: Follow-up - Some changes to the template

Changing the link to a button and a pull down, matching the
layout for the notification pull down and send notification button.

To test:
- Try to export claims as CSV and verify that the layout
  change didn't break the functionality.
- Decide if you like the change or not :)
---
 .../prog/en/modules/serials/claims.tt              |   15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/claims.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/claims.tt
index cdcd259..441372f 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/claims.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/claims.tt
@@ -297,17 +297,16 @@
                 [% END %]</tbody>
             </table>
 
-        [% IF csv_profiles %]
-          <p>
-            <span class="exportSelected"><a id="ExportSelected" href="/cgi-bin/koha/serials/claims.pl">Export selected items data</a></span>
-            using the following csv profile:
-            <select id="csv_profile_for_export">
+[% IF csv_profiles %]
+        <fieldset class="action"> <label for="csv_code">Select CSV profile:</label>
+            <select name="csv_profile_for_export" id="csv_profile_for_export">
               [% FOR csv IN csv_profiles %]
                 <option value="[% csv.export_format_id %]">[% csv.profile %]</option>
-               [% END %]
+              [% END %]
             </select>
-          </p>
-        [% END %]
+            <input type="submit" name="submit" id="ExportSelected" class="button" value="Export issues as CSV" />
+        </fieldset>
+[% END %]
 
 [% IF ( letter ) %]
         <fieldset class="action"> <label for="letter_code">Select notice:</label>
-- 
1.7.9.5