From 04524b9a104830639062301c79b95c4c455c58db Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 8 May 2020 13:15:40 -0400 Subject: [PATCH] Bug 25430: Improve the styling of the claims returned tab It has been suggested that it would be useful to add title attributes to the different numbers on the return claims tab in the checkouts and patron details pages. In addition, color coding them ( and removing the slash ) will make the numbers easier to read. Test Plan: 1) Set up return claims for your system 2) Apply this patch 3) View the claims tab for someone with not claims, and someone with claims 4) Note the resolved claims are green and have a "tooltip" when hovered over 5) Note the unresolved claims are green if 0, and yellow if not 0, and also have a "tooltip" Signed-off-by: Sally --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 10 ++++------ koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 10 ++++------ 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index e9534ead52..818564d1b3 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -873,17 +873,15 @@
  • [% IF ( patron.return_claims.count ) %] - [% patron.return_claims.resolved.count | html %] - / - [% patron.return_claims.unresolved.count | html %] Claim(s) + [% patron.return_claims.resolved.count | html %] + [% patron.return_claims.unresolved.count | html %] [% ELSE %] - 0 - / - 0 Claim(s) + 0 + 0 [% END %]
  • diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt index a03c1bd5e4..3d4b19e9e8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt @@ -737,17 +737,15 @@
  • [% IF ( patron.return_claims.count ) %] - [% patron.return_claims.resolved.count | html %] - / - [% patron.return_claims.unresolved.count | html %] Claim(s) + [% patron.return_claims.resolved.count | html %] + [% patron.return_claims.unresolved.count | html %] [% ELSE %] - 0 - / - 0 Claim(s) + 0 + 0 [% END %]
  • -- 2.11.0