Bug 33882: Add spans in dateofbirth column on member.tt
To test: 1 Apply patch 2 Do a patron search that will return multiple patrons. 3 Look at the date of birth column and notice the text is now wrapped in a class called 'dateofbirth' 4. Notice that the age hint is wrapped in a class called 'agehint'. 5. Add '.agehint { display: none }' to intranetusercss. 6. Now notice the date of birth still displays but no age information. Signed-off-by: Sam Lau <samalau@gmail.com> Signed-off-by: David Cook <dcook@prosentient.com.au> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
536f860038
commit
9eb62ef191
1 changed files with 1 additions and 1 deletions
|
@ -428,7 +428,7 @@
|
|||
"searchable": true,
|
||||
"orderable": true,
|
||||
"render": function( data, type, row, meta ) {
|
||||
return data ? escape_str($date(data) + " (" + _("%s years").format($get_age(data)) + ")") : "";
|
||||
return data ? "<span class=\"dateofbirth\">" + escape_str($date(data)) + "<span class=\"agehint\"> (" + _("%s years").format($get_age(data)) + ")</span></span>" : "";
|
||||
}
|
||||
}
|
||||
[% CASE 'address' %]
|
||||
|
|
Loading…
Reference in a new issue