Bugzilla – Attachment 112141 Details for
Bug 26687
Add a Font Awesome icon for superlibrarian patrons
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 26687: Add a Font Awesome icon for superlibrarian patrons
Bug-26687-Add-a-Font-Awesome-icon-for-superlibrari.patch (text/plain), 2.05 KB, created by
Fridolin Somers
on 2020-10-22 07:51:36 UTC
(
hide
)
Description:
Bug 26687: Add a Font Awesome icon for superlibrarian patrons
Filename:
MIME Type:
Creator:
Fridolin Somers
Created:
2020-10-22 07:51:36 UTC
Size:
2.05 KB
patch
obsolete
>From cb907ff28a7d2dc541d236598edc49b003077528 Mon Sep 17 00:00:00 2001 >From: Fridolin Somers <fridolin.somers@biblibre.com> >Date: Thu, 15 Oct 2020 10:48:52 +0200 >Subject: [PATCH] Bug 26687: Add a Font Awesome icon for superlibrarian patrons > >Bug 26534 adds a shield Font Awesome icon to help identify staff >patrons. I propose to add an icon when patron is a superlibrarian. > >Patch adds 'is-superlibrarian' class that may be used for more CSS >tuning. > >Test plan: >1) Compare display between a patron A beeing superlibarian and a patron > B having only staff interface access >2) Patron B has only shield icon >3) Patron A has shield icon and bolt icon >4) Check a patron without permissions has no shield icon >--- > .../intranet-tmpl/prog/en/includes/circ-menu.inc | 11 ++++++++++- > 1 file changed, 10 insertions(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc >index 17f8f36f11..a35b058607 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc >@@ -3,7 +3,13 @@ > [% PROCESS 'member-display-address-style.inc' %] > [% IF ( patron.borrowernumber ) %] > [% SET patron_is_staff = patron.has_permission({ 'catalogue' => 1 }) %] >-[% SET patron_type_class = patron_is_staff ? 'is-staff' : 'is-not-staff' %] >+[% SET patron_is_superlibrarian = patron.is_superlibrarian %] >+[% SET patron_type_class = 'is-not-staff' %] >+[% IF ( patron_is_superlibrarian ) %] >+ [% patron_type_class = 'is-staff is-superlibrarian' %] >+[% ELSIF ( patron_is_staff ) %] >+ [% patron_type_class = 'is-staff' %] >+[% END %] > <div class="patroninfo [% patron_type_class | html %]"> > > [% IF ( patronimages ) %] >@@ -14,6 +20,9 @@ > [% IF ( patron_is_staff ) %] > <i class="fa fa-shield fa-fw" title="Staff patron"></i> > [% END %] >+ [% IF ( patron_is_superlibrarian ) %] >+ <i class="fa fa-bolt fa-fw" title="Superlibrarian patron"></i> >+ [% END %] > [% INCLUDE 'patron-title.inc' %] > </h5> > >-- >2.28.0
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 26687
:
111686
|
111871
|
111875
|
112140
|
112141
|
112245
|
112247