[open-ils-commits] [GIT] Evergreen ILS branch rel_2_11 updated. e985a70cada82586e5ac06aee193c95b2f0f105e
Evergreen Git
git at git.evergreen-ils.org
Thu Nov 17 20:22:07 EST 2016
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, rel_2_11 has been updated
via e985a70cada82586e5ac06aee193c95b2f0f105e (commit)
from 71b53d8e7e0a3432dd75d5a3d3c264f60a2b4706 (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 e985a70cada82586e5ac06aee193c95b2f0f105e
Author: Kyle Huckins <khuckins at catalystdevworks.com>
Date: Tue Oct 4 09:01:02 2016 -0700
LP#1528916 Patron Holds Ready/Total
Switch order or patron_stats().holds.ready and
patron_stats().holds.total in t_summary and patron
index.
Signed-off-by: Kyle Huckins <khuckins at catalystdevworks.com>
Changes to be committed:
modified: Open-ILS/src/templates/staff/circ/patron/index.tt2
modified: Open-ILS/src/templates/staff/circ/patron/t_summary.tt2
Signed-off-by: Kathy Lussier <klussier at masslnc.org>
diff --git a/Open-ILS/src/templates/staff/circ/patron/index.tt2 b/Open-ILS/src/templates/staff/circ/patron/index.tt2
index cc3ee09..810950d 100644
--- a/Open-ILS/src/templates/staff/circ/patron/index.tt2
+++ b/Open-ILS/src/templates/staff/circ/patron/index.tt2
@@ -107,7 +107,7 @@ angular.module('egCoreMod').run(['egStrings', function(s) {
<a a-disabled="!patron()" href="./circ/patron/{{patron().id()}}/holds">
[% l('Holds') %]
<span ng-if="patron()">
- (<span>{{patron_stats().holds.total}} / {{patron_stats().holds.ready}}</span>)
+ (<span>{{patron_stats().holds.ready}} / {{patron_stats().holds.total}}</span>)
</span>
</a>
</li>
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 205a64a..83a5957 100644
--- a/Open-ILS/src/templates/staff/circ/patron/t_summary.tt2
+++ b/Open-ILS/src/templates/staff/circ/patron/t_summary.tt2
@@ -94,7 +94,7 @@
<div class="row">
<div class="col-md-5">[% l('Holds') %]</div>
<div class="col-md-7">
- {{patron_stats().holds.total}} / {{patron_stats().holds.ready}}
+ {{patron_stats().holds.ready}} / {{patron_stats().holds.total}}
</div>
</div>
<div class="row patron-summary-divider">
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/src/templates/staff/circ/patron/index.tt2 | 2 +-
.../src/templates/staff/circ/patron/t_summary.tt2 | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list