Bugzilla – Attachment 39480 Details for
Bug 14269
OPAC: Small template improvements to full serial history page
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14269: OPAC: Some template improvements for the full serial history page
Bug-14269-OPAC-Some-template-improvements-for-the-.patch (text/plain), 4.42 KB, created by
Katrin Fischer
on 2015-05-25 10:19:59 UTC
(
hide
)
Description:
Bug 14269: OPAC: Some template improvements for the full serial history page
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2015-05-25 10:19:59 UTC
Size:
4.42 KB
patch
obsolete
>From f705ac1b5a36607eee7a2a444c1dda7e3097cf8b Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <Katrin.Fischer.83@web.de> >Date: Mon, 25 May 2015 12:13:08 +0200 >Subject: [PATCH] Bug 14269: OPAC: Some template improvements for the full > serial history page > >- Fix filter labels: > Library : -> Library: > Subscription : -> Subscription: >- Make '(All)' entry in filter pull downs translatable >- Show branch name instead of branchcode in table and filter > >To test: >- Verify changes as described above >- Verify filters still work as expected >--- > .../bootstrap/en/modules/opac-full-serial-issues.tt | 15 ++++++++------- > 1 file changed, 8 insertions(+), 7 deletions(-) > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-full-serial-issues.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-full-serial-issues.tt >index f0b91c1..18e1894 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-full-serial-issues.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-full-serial-issues.tt >@@ -1,5 +1,6 @@ > [% USE Koha %] > [% USE KohaDates %] >+[% USE Branches %] > [% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog › Full subscription history for [% bibliotitle %] > [% INCLUDE 'doc-head-close.inc' %] > [% BLOCK cssinclude %] >@@ -26,10 +27,9 @@ > <h4>Refine your search</h4> > <form action="/cgi-bin/koha/opac-serial-issues.pl" id="filterform"> > <fieldset> >- <label for="libraryfilter">Library : </label> >+ <label for="libraryfilter">Library: </label> > <select id="libraryfilter" name="libraryfilter" style="width:10em;"></select> >- >- <label for="subscriptionidfilter">Subscription : </label> >+ <label for="subscriptionidfilter">Subscription: </label> > <select id="subscriptionidfilter" name="subscriptionfilter" style="width:10em;" disabled="disabled"></select> > </fieldset> > <fieldset class="action"> >@@ -90,7 +90,7 @@ > > [% END %] > </td> >- <td class="libraryfilterclass">[% serial.branchcode %]</td> >+ <td class="libraryfilterclass">[% Branches.GetName( serial.branchcode ) %]</td> > <td>[% serial.notes %]</td> > <td> > [% IF ( serial.status2 && serial.planneddate ) %] >@@ -174,13 +174,14 @@ > }); > > // Setting the option values with branchcodes >- $("#libraryfilter").append('<option value="all">(All)</option>'); >+ $("#libraryfilter").append('<option value="all">'+_("(All)")+'</option>'); > for (var i = 0; i < subarray.length; i++) { > $("#libraryfilter").append('<option value="' + subarray[i] + '">' + subarray[i] + '</option>'); > } > } > > // Filter by Library >+ > function filterByLibrary() { > > selectedStatus = $("#libraryfilter").val(); >@@ -205,7 +206,7 @@ > if (subarray.indexOf($(this).text()) == -1) { subarray.push($(this).text()); } > }); > // Setting the option values with subscription id's >- $("#subscriptionidfilter").append('<option value="all">(All)</option>'); >+ $("#subscriptionidfilter").append('<option value="all">'+_("(All)")+'</option>'); > for (var i = 0; i < subarray.length; i++) { > $("#subscriptionidfilter").append('<option value="' + subarray[i] + '">' + subarray[i] + '</option>'); > } >@@ -248,7 +249,7 @@ > > // Remove old subscription options > $("#subscriptionidfilter option").remove(); >- $("#subscriptionidfilter option").append('<option value="all">(All)</option>'); >+ $("#subscriptionidfilter option").append('<option value="all">'+_("(All)")+'</option>'); > $("#subscriptionidfilter").attr("disabled", "disabled"); > > if (keeplibrary != true) { >-- >1.9.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 14269
:
39480
|
39690
|
39846