From: Pasi Kallinen Date: Wed, 2 Jan 2013 13:18:56 +0000 (+0200) Subject: Wrap record navigation template next and previous arrows with spans. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=refs%2Fheads%2Fuser%2Fpaxed%2Fnavarrowfixes;p=working%2FEvergreen.git 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 --- diff --git a/Open-ILS/src/templates/opac/parts/record/navigation.tt2 b/Open-ILS/src/templates/opac/parts/record/navigation.tt2 index 29b1106a68..770a35023a 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 >= 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 %]