From: Pasi Kallinen Date: Wed, 2 Jan 2013 13:18:56 +0000 (+0200) Subject: LP#1095290: Wrap record navigation template next and previous arrows with spans. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=321b1f9bad0e00c838e3488eed206a072940bb71;p=evergreen%2Fmasslnc.git LP#1095290: Wrap record navigation template next and previous arrows with spans. Also affects one translatable string, by moving the arrow outside it; there's no sense having it in the string. Signed-off-by: Pasi Kallinen Signed-off-by: Kathy Lussier Signed-off-by: Ben Shum --- diff --git a/Open-ILS/src/templates/opac/parts/record/navigation.tt2 b/Open-ILS/src/templates/opac/parts/record/navigation.tt2 index 8b38a7f67c..003f6bdd59 100644 --- a/Open-ILS/src/templates/opac/parts/record/navigation.tt2 +++ b/Open-ILS/src/templates/opac/parts/record/navigation.tt2 @@ -1,7 +1,7 @@ [% IF ctx.search_result_index.defined && ctx.search_result_index >= 0 %]
- [% l('◄ Search Results') %] + [% l('Search Results') %] [% l('Showing Item [_1] of [_2]', ctx.search_result_index + 1, ctx.hit_count) %] @@ -18,7 +18,7 @@ ctx.prev_rec_url = mkurl(ctx.prev_search_record, prev_args, stop_parms); %] ◄ [% l('Previous') %] + href='[% ctx.prev_rec_url %]'> [% l('Previous') %] [% END %] [% @@ -30,7 +30,7 @@ ctx.next_rec_url = mkurl(ctx.next_search_record, next_args, stop_parms); %] [% l('Next') %] ► + href='[% ctx.next_rec_url %]'>[% l('Next') %] [% END %]