Bugzilla – Attachment 48183 Details for
Bug 15804
Use standard dialog style for confirmation of MARC subfield deletion
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 15804 [Revised] Use standard dialog style for confirmation of MARC subfield deletion
Bug-15804-Revised-Use-standard-dialog-style-for-co.patch (text/plain), 3.96 KB, created by
Owen Leonard
on 2016-02-17 14:03:00 UTC
(
hide
)
Description:
Bug 15804 [Revised] Use standard dialog style for confirmation of MARC subfield deletion
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2016-02-17 14:03:00 UTC
Size:
3.96 KB
patch
obsolete
>From b9d3417ed2308ab7ff36c055f12c35f4ee03abca Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Thu, 11 Feb 2016 12:23:49 -0500 >Subject: [PATCH] Bug 15804 [Revised] Use standard dialog style for > confirmation of MARC subfield deletion >Content-Type: text/plain; charset="utf-8" > >When deleting a MARC framework subfield, the confirmation message is not >styled. This patch modifies the template to style the confirmation >message like similar ones. > >Depends on Bug 15785 - Use Font Awesome icons in confirmation dialogs > >To test, apply the patch and go to Administration -> MARC framworks. > > - Click 'MARC structure' for a framework you can edit. > - Click 'subfields' for a tag you can edit. > - Click 'Delete' for a subfield you can delete. You should see a > confirmation dialog styled like other "alert" type dialogs. > - Test both canceling and confirming deletion to confirm that both > function correctly. > >Revised to fix conflicts with rollback of Bug 13618 >--- > .../en/modules/admin/marc_subfields_structure.tt | 42 ++++++++++++---------- > 1 file changed, 23 insertions(+), 19 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc_subfields_structure.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc_subfields_structure.tt >index bd76f43..06f5c50 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc_subfields_structure.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc_subfields_structure.tt >@@ -346,25 +346,29 @@ function populateHiddenCheckboxes(tab) { > > [% IF ( delete_confirm ) %] > >-<h3>Confirm deletion of subfield [% tagsubfield %]?</h3> >- <p>Subfield: [% tagsubfield %]</p> >- <p>Description: [% liblibrarian %]</p> >- >- <form action="[% delete_link %]" method="post"><input type="hidden" name="op" value="delete_confirmed" /> >- <input type="hidden" name="searchfield" value="[% searchfield %]" /> >- <input type="hidden" name="tagfield" value="[% tagfield | html %]" /> >- <input type="hidden" name="tagsubfield" value="[% tagsubfield %]" /> >- <input type="hidden" name="frameworkcode" value="[% frameworkcode %]" /> >- <input type="submit" value="Yes, delete this subfield" /> >- </form> >- >- <form action="[% script_name %]" method="post"> >- <input type="hidden" name="searchfield" value="[% searchfield %]" /> >- <input type="hidden" name="tagfield" value="[% tagfield | html %]" /> >- <input type="hidden" name="tagsubfield" value="[% tagsubfield %]" /> >- <input type="hidden" name="frameworkcode" value="[% frameworkcode %]" /> >- <input type="submit" value="No, do not delete" /> >- </form> >+ <div class="dialog alert"> >+ <h3>Confirm deletion of subfield [% tagsubfield %]?</h3> >+ <p>Subfield: [% tagsubfield %]</p> >+ <p>Description: [% liblibrarian %]</p> >+ >+ <form action="[% delete_link %]" method="post"><input type="hidden" name="op" value="delete_confirmed" /> >+ <input type="hidden" name="searchfield" value="[% searchfield %]" /> >+ <input type="hidden" name="tagfield" value="[% tagfield | html %]" /> >+ <input type="hidden" name="tagsubfield" value="[% tagsubfield %]" /> >+ <input type="hidden" name="frameworkcode" value="[% frameworkcode %]" /> >+ <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> Yes, delete this subfield</button> >+ </form> >+ >+ >+ <form action="[% script_name %]" method="post"> >+ <input type="hidden" name="searchfield" value="[% searchfield %]" /> >+ <input type="hidden" name="tagfield" value="[% tagfield | html%]" /> >+ <input type="hidden" name="tagsubfield" value="[% tagsubfield %]" /> >+ <input type="hidden" name="frameworkcode" value="[% frameworkcode %]" /> >+ <button type="submit" class="deny"><i class="fa fa-fw fa-remove"></i> No, do not delete</button> >+ </form> >+ </div> >+ > [% END %] > > [% IF ( delete_confirmed ) %] >-- >2.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 15804
:
47934
|
48183
|
48239
|
48240
|
48453
|
48454
|
48455
|
48744