From 59a0b570a13339b52d7e7cbc579ed7e77da958e8 Mon Sep 17 00:00:00 2001
From: Aleisha <aleishaamohia@hotmail.com>
Date: Sun, 6 Mar 2016 22:40:42 +0000
Subject: [PATCH] Bug 15993: Moving currency actions into a drop-down menu

To test:

1) Go to Administration -> Currencies and exchange rates
2) Confirm that the actions 'Edit' and 'Delete' have been moved into a drop-down menu and buttons behave as expected.

Sponsored-by: Catalyst IT

Signed-off-by: Nicole C Engard <nengard@bywatersolutions.com>
---
 koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt
index 305e471..8d4f736 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt
@@ -177,7 +177,8 @@
             <th class="title-string">Last updated</th>
             <th>Active</th>
             <th>Archived</th>
-            <th>Actions</th>
+            <th>&nbsp;</th>
+
         </tr>
       </thead>
       <tbody>
@@ -191,9 +192,14 @@
             <td style="color:green;">[% IF currency.active %]✓[% END %]</td>
             <td>[% IF currency.archived %]Yes[% END %]</td>
             <td>
-              <a href="/cgi-bin/koha/admin/currency.pl?op=add_form&amp;currency_code=[% currency.currency %]">Edit</a>
-              |
-              <a href="/cgi-bin/koha/admin/currency.pl?op=delete_confirm&amp;currency_code=[% currency.currency %]">Delete</a>
+              <div class="dropdown">
+                <a class="btn btn-mini dropdown-toggle" id="currencyactions[% currency.currency %]" role="button" data-toggle="dropdown" href="#">
+                  Actions <b class="caret"></b></a>
+                <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="currencyactions[% currency.currency %]">
+                  <li><a href="/cgi-bin/koha/admin/currency.pl?op=add_form&amp;currency_code=[% currency.currency %]"><i class="fa fa-pencil"></i> Edit</a></li>
+                  <li><a href="/cgi-bin/koha/admin/currency.pl?op=delete_confirm&amp;currency_code=[% currency.currency %]"><i class="fa fa-trash"></i> Delete</a></li>
+                </ul>
+              </div>
             </td>
           </tr>
         [% END %]
-- 
2.1.4