[open-ils-commits] [GIT] Evergreen ILS branch master updated. 16e2c31176f0808add6d80a7c39697ac026226dc
Evergreen Git
git at git.evergreen-ils.org
Wed May 29 10:50:24 EDT 2019
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, master has been updated
via 16e2c31176f0808add6d80a7c39697ac026226dc (commit)
from 4701869d8e4a1fd57b2ee1c1600b56a98e962e09 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 16e2c31176f0808add6d80a7c39697ac026226dc
Author: Garry Collum <gcollum at gmail.com>
Date: Sat May 19 17:00:40 2018 -0400
LP1772206 Tooltips missing from Patron Summary
Adds tooltips for home branch and Last Activity to emulate the XUL
client. The home branch tool tip displays the long OU name. The
last activity tooltip displays the last type of activity.
To test:
Home branch
1. Perform a patron search.
2. Click on one of the patrons in the results.
3. Hover over the home branch location in the patron summary.
Last Activity
4. Log into the opac with a patron account to some patron activity.
5. Bring up the patron in the staff client.
6. Hover over the last activity date.
7. Apply the patch and repeat 1-3 and 5-6.
Signed-off-by: Garry Collum <gcollum at gmail.com>
Signed-off-by: Terran McCanna <tmccanna at georgialibraries.org>
Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>
diff --git a/Open-ILS/src/templates/staff/circ/patron/t_summary.tt2 b/Open-ILS/src/templates/staff/circ/patron/t_summary.tt2
index 7963ca0bb0..d5c18ea5ac 100644
--- a/Open-ILS/src/templates/staff/circ/patron/t_summary.tt2
+++ b/Open-ILS/src/templates/staff/circ/patron/t_summary.tt2
@@ -54,7 +54,7 @@
</div>
<div class="row">
<div class="col-md-5">[% l('Home Library') %]</div>
- <div class="col-md-7">{{patron().home_ou().shortname()}}</div>
+ <div class="col-md-7" title="{{patron().home_ou().name()}}">{{patron().home_ou().shortname()}}</div>
</div>
<div class="row">
<div class="col-md-5">[% l('Net Access') %]</div>
@@ -72,7 +72,7 @@
</div>
<div class="row">
<div class="col-md-5">[% l('Last Activity') %]</div>
- <div class="col-md-7">{{patron().usr_activity()[0].event_time() | date:$root.egDateFormat}}</div>
+ <div class="col-md-7" title="{{patron().usr_activity()[0].etype().label()}}">{{patron().usr_activity()[0].event_time() | date:$root.egDateFormat}}</div>
</div>
<div class="row">
<div class="col-md-5">[% l('Last Updated') %]</div>
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/src/templates/staff/circ/patron/t_summary.tt2 | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list