Bug 16888: Add Font Awesome Icons to Members
Add Font Awesome Icons to: - "Select/Clear all" links to pay.tt (Pay fines tab) - "Filter icon" in "filter paid transactions" to Accout tab (boraccount.tt) - "Trash icon" to Remove option in "Manual restrictions" (borrower_debarments.inc) also add "Ban and plus icon" to "Add manual restriction" To test: -Apply patch -Select a patron who has fines -Go to "Fines->Pay fines" tabs and see the icons in "Select/Clear all" -Choose the "Account" tab and sse the icon in "Filter paid transactions" -Select the "Check out" tab and go to "Restrictions" -Add a manual restriction and notice about the two new icons fa-plus and fa-band -See the new button btn-mini and the fa-trash icon -Verify that all works as expected Signed-off-by: Marc Véron <veron@veron.ch> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
parent
f240a91640
commit
ae41952077
3 changed files with 8 additions and 8 deletions
|
@ -66,8 +66,8 @@
|
|||
<td>[% IF d.expiration %] [% d.expiration | $KohaDates %] [% ELSE %] <i>Indefinite</i> [% END %]</td>
|
||||
[% IF CAN_user_borrowers && CAN_user_circulate_manage_restrictions %]
|
||||
<td>
|
||||
<a class="remove_restriction" href="/cgi-bin/koha/members/mod_debarment.pl?borrowernumber=[% borrowernumber %]&borrower_debarment_id=[% d.borrower_debarment_id %]&action=del">
|
||||
Remove
|
||||
<a class="remove_restriction btn btn-mini" href="/cgi-bin/koha/members/mod_debarment.pl?borrowernumber=[% borrowernumber %]&borrower_debarment_id=[% d.borrower_debarment_id %]&action=del">
|
||||
<i class="fa fa-trash"></i> Remove
|
||||
</a>
|
||||
</td>
|
||||
[% END %]
|
||||
|
@ -77,12 +77,12 @@
|
|||
</table>
|
||||
[% END %]
|
||||
[% IF CAN_user_borrowers && CAN_user_circulate_manage_restrictions %]
|
||||
<p><a href="#" id="add_manual_restriction">Add manual restriction</a></p>
|
||||
<p><a href="#" id="add_manual_restriction"><i class="fa fa-plus"></i> Add manual restriction</a></p>
|
||||
<form method="post" action="/cgi-bin/koha/members/mod_debarment.pl" class="clearfix">
|
||||
<input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
|
||||
<input type="hidden" name="action" value="add" />
|
||||
<fieldset class="rows" id="manual_restriction_form">
|
||||
<legend>Add manual restriction</legend>
|
||||
<legend><i class="fa fa-ban"></i> Add manual restriction</legend>
|
||||
<ol>
|
||||
<li><label for="rcomment">Comment:</label> <input type="text" id="rcomment" name="comment" /></li>
|
||||
<li><label for="rexpiration">Expiration:</label> <input name="expiration" id="rexpiration" size="10" readonly="readonly" value="" class="datepicker" />
|
||||
|
|
|
@ -18,15 +18,15 @@ $(document).ready(function() {
|
|||
{ "bSortable": false, "bSearchable": false, "aTargets": [-1] }
|
||||
]
|
||||
}));
|
||||
$("#filter_c").html('<p><a href="#" id="filter_transacs">'+txtActivefilter+'</a>');
|
||||
$("#filter_c").html('<p><a href="#" id="filter_transacs"><i class="fa fa-filter"></i> '+txtActivefilter+'</a>');
|
||||
$('#filter_transacs').click(function(e) {
|
||||
e.preventDefault();
|
||||
if ($(this).hasClass('filtered')) {
|
||||
var filteredValue = '';
|
||||
$(this).text(txtActivefilter);
|
||||
$(this).html('<i class="fa fa-filter"></i> '+txtActivefilter);
|
||||
} else { //Not filtered. Let's do it!
|
||||
var filteredValue = '^((?!0.00).*)$'; //Filter not matching 0.00 http://stackoverflow.com/a/406408
|
||||
$(this).text(txtInactivefilter);
|
||||
$(this).html('<i class="fa fa-filter"></i> '+txtInactivefilter);
|
||||
}
|
||||
table_account_fines.fnFilter(filteredValue, 4, true, false);
|
||||
$(this).toggleClass('filtered');
|
||||
|
|
|
@ -68,7 +68,7 @@ function enableCheckboxActions(){
|
|||
[% IF ( accounts ) %]
|
||||
<form action="/cgi-bin/koha/members/pay.pl" method="post" id="pay-fines-form">
|
||||
<input type="hidden" name="borrowernumber" id="borrowernumber" value="[% borrower.borrowernumber %]" />
|
||||
<p><span class="checkall"><a id="CheckAll" href="#">Select all</a></span> | <span class="clearall"><a id="CheckNone" href="#">Clear all</a></span></p>
|
||||
<p><span class="checkall"><a id="CheckAll" href="#"><i class="fa fa-check"></i> Select all</a></span> | <span class="clearall"><a id="CheckNone" href="#"><i class="fa fa-remove"></i> Clear all</a></span></p>
|
||||
<table id="finest">
|
||||
<thead>
|
||||
<tr>
|
||||
|
|
Loading…
Reference in a new issue