Bugzilla – Attachment 47878 Details for
Bug 13778
Putting patron lists buttons into a dropdown menu
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 13778: Putting patron lists buttons into a dropdown menu
Bug-13778-Putting-patron-lists-buttons-into-a-drop.patch (text/plain), 4.94 KB, created by
Aleisha Amohia
on 2016-02-10 20:46:55 UTC
(
hide
)
Description:
Bug 13778: Putting patron lists buttons into a dropdown menu
Filename:
MIME Type:
Creator:
Aleisha Amohia
Created:
2016-02-10 20:46:55 UTC
Size:
4.94 KB
patch
obsolete
>From df9220d35fa76eae4fb2d50aa6a8b018f5369f3c Mon Sep 17 00:00:00 2001 >From: Aleisha <aleishaamohia@hotmail.com> >Date: Wed, 10 Feb 2016 20:43:27 +0000 >Subject: [PATCH] Bug 13778: Putting patron lists buttons into a dropdown menu > >To test: >1) Go to Tools -> Patron lists >2) If there are no lists, confirm there is a message box saying 'There are no patron lists.' >3) Create a list if you do not already have one. >4) Confirm that in the 'Actions' drop down menu next to the list, the options to 'Add patrons', 'Edit', 'Delete', and 'Print patron cards' are all there and work as expected. >--- > .../prog/en/modules/patron_lists/lists.tt | 39 +++++++++----------- > 1 file changed, 17 insertions(+), 22 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt >index c16d6d1..ae875e7 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt >@@ -11,7 +11,7 @@ > $('#patron-lists-table').dataTable($.extend(true, {}, dataTablesDefaults, { > "autoWidth": false, > "aoColumnDefs": [ >- { "aTargets": [ -1, -2, -3, -4 ], "bSortable": false, "bSearchable": false }, >+ { "aTargets": [ -1, -2, -3 ], "bSortable": false, "bSearchable": false }, > ], > "sPaginationType": "four_button" > } )); >@@ -38,15 +38,14 @@ > <a class="btn btn-small" href="add-modify.pl"><i class="fa fa-plus"></i> New patron list</a> > </div> > >+ [% IF ( lists ) %] >+ > <table id="patron-lists-table"> > <thead> > <tr> > <th>Name</th> > <th>Patrons in list</th> > <th> </th> >- <th> </th> >- <th> </th> >- <th> </th> > </tr> > </thead> > >@@ -56,29 +55,25 @@ > <td>[% l.name %]</td> > <td>[% l.patron_list_patrons_rs.count || 0 %]</td> > <td> >- <a class="btn btn-mini" href="list.pl?patron_list_id=[% l.patron_list_id %]"> >- <i class="fa fa-plus-sign"></i> Add patrons <i class="fa fa-user"></i> >- </a> >- </td> >- <td> >- <a class="btn btn-mini" href="add-modify.pl?patron_list_id=[% l.patron_list_id %]"> >- <i class="fa fa-edit"></i> Edit >- </a> >- </td> >- <td> >- <a class="btn btn-mini" href="delete.pl?patron_list_id=[% l.patron_list_id %]" onclick='return ConfirmDelete("[% l.name %]")'> >- <i class="fa fa-trash"></i> Delete >- </a> >- </td> >- <td> >- <a class="btn btn-mini" href="#" onclick='GB_showCenter(_("Print patron cards from list"), "/cgi-bin/koha/patroncards/print.pl?patronlist_id=[% l.patron_list_id %]", 400, 800);return false;'> >- <i class="icon-print"></i> Print patron cards >- </a> >+ <div class="dropdown"> >+ <a class="btn btn-mini dropdown-toggle" id="listactions[% l.patron_list_id %]" role="button" data-toggle="dropdown" href="#"> >+ Actions <b class="caret"></b> >+ </a> >+ <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="listactions[% l.patron_list_id %]"> >+ <li><a href="/cgi-bin/koha/patron_lists/list.pl?patron_list_id=[% l.patron_list_id %]"><i class="fa fa-user"></i> Add patrons</a></li> >+ <li><a href="/cgi-bin/koha/patron_lists/add-modify.pl?patron_list_id=[% l.patron_list_id %]"><i class="fa fa-edit"></i> Edit</a></li> >+ <li><a href="/cgi-bin/koha/patron_lists/delete.pl?patron_list_id=[% l.patron_list_id %]" onclick='return ConfirmDelete("[% l.name %]")'><i class="fa fa-trash"></i> Delete</a></li> >+ <li><a href="#" onclick='GB_showCenter(_("Print patron cards from list"), "/cgi-bin/koha/patroncards/print.pl?patronlist_id=[% l.patron_list_id %]", 400, 800);return false;'><i class="icon-print"></i> Print patron cards</a></li> >+ </ul> >+ </div> > </td> > </tr> > [% END %] > </tbody> > </table> >+ [% ELSE %] >+ <div class="dialog message">There are no patron lists.</div> >+ [% END %] > </div> > </div> > [% INCLUDE 'intranet-bottom.inc' %] >-- >1.7.10.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 13778
:
36309
|
47878
|
47879
|
47883
|
47984
|
47998
|
47999