From 4d69c1e031912aa380374d7e33703efb914bdc70 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 10 Mar 2016 11:43:32 -0500 Subject: [PATCH] Bug 16046 - Use Font Awesome icons on patron edit pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch updates links in the patron edit and batch patron modification templates to use Font Awesome icons instead of background-images. To test you must have ExtendedPatronAttributes enabled and at least one repeatable attribute defined. - Apply the patch and edit any patron record. - In the section for editing attributes and identifiers, check the styling and behavior of the "Clear" and "New" links. - In Tools -> Batch patron modification, load a batch of patron records. - In the "Edit" form, check the style and behavior of the "Clear" link for date inputs. - Test the "New" and "Delete" links for patron attributes. Signed-off-by: Christian Stelzenmüller Signed-off-by: Jonathan Druart --- koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 4 ++-- koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt index d470166..44a73f3 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt @@ -1062,9 +1062,9 @@ function select_user(borrowernumber, borrower) { ( ) [% END %] - Clear + Clear [% IF ( patron_attribute.repeatable ) %] - New + New [% END %] [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt index 3bd2bf5..2d8d5cf 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt @@ -85,7 +85,7 @@ var li_node = $("li.attributes:last"); var li_clone = $(li_node).clone(); if ( $(li_clone).find("a.delete").length == 0 ) { - $(li_clone).append('Delete'); + $(li_clone).append(' Delete'); } $(li_clone).find('select[name="patron_attributes"]').change(function() { updateAttrValues(this); @@ -338,7 +338,7 @@ [% END %] [% IF ( field.type == 'date' ) %] - Clear + Clear [% END %] [% IF field.mandatory %] Required fields cannot be cleared @@ -356,7 +356,7 @@ - New + New [% END %] -- 2.7.0