Bug 15951: Use Font Awesome icons for acquisitions order cancellation confirmation
In Acquisitions, when you delete (cancel) an order, a dialog asks you to confirm. This dialog should be styled with Font Awesome icons. Other minor edit: Changing page grid style for centered main content area. To test, apply the patch and locate a basket in Acquisitions with an order. - View the details for the basket. - Click the 'Delete' link next to the order you want to delete. - Confirm that the dialog is correctly styled. - Test the cancel operation and verify that you are correctly redirected back to where you were. - Test the confirmation operation and verify that your order is deleted. - Also test the deletion process from Acquisitions -> Vendor -> Invoices -> Invoice -> Go to receipt page -> Delete order. Signed-off-by: Hector Castro <hector.hecaxmmx@gmail.com> Works as advertised Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
This commit is contained in:
parent
5b4c6f311e
commit
f43f6bd97a
1 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@
|
|||
|
||||
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisition</a> › Cancel order</div>
|
||||
|
||||
<div id="doc3" class="yui-t2">
|
||||
<div id="doc" class="yui-t7">
|
||||
|
||||
<div id="bd">
|
||||
<div id="yui-main">
|
||||
|
@ -34,8 +34,8 @@
|
|||
[% IF (del_biblio) %]
|
||||
<input type="hidden" value="1" name="del_biblio" />
|
||||
[% END %]
|
||||
<input type="submit" class="approve" value="Yes, cancel" accesskey="y" />
|
||||
<input type="submit" class="deny" value="No, don't cancel" accesskey="n" onclick="window.location='[% referrer %]';return false;" />
|
||||
<button type="submit" class="approve" accesskey="y"><i class="fa fa-fw fa-check"></i> Yes, cancel (Y)</button>
|
||||
<button class="deny" accesskey="n" onclick="window.location='[% referrer %]';return false;"><i class="fa fa-fw fa-remove"></i> No, don't cancel (N)</button>
|
||||
</div>
|
||||
</form>
|
||||
[% ELSE %]
|
||||
|
|
Loading…
Reference in a new issue