Koha/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-bib-search.tt
Wainui Witika-Park 2f292b25ce Bug 26703: serials folder
Swapped the order of the page titles to have the unique information
first, i.e. the name of the specific page displays first, and the name of the website (e.g. Koha) displays at the end.

To test:
1) Apply patch
2) Ensure each of the files in the serials folder are swapped around
to display the most unique information first, and the website name is at the end
3) Ensure the pages displayed on the Staff Client that correspond to
these files also display the changes

Sponsored-by: Catalyst IT
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Henry Bolshaw <bolshawh@parliament.uk>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-04-21 11:16:35 +02:00

53 lines
1.8 KiB
Text

[% INCLUDE 'doc-head-open.inc' %]
<title>Catalog search &rsaquo; Serials &rsaquo; Koha</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="ser_subscription-bib-search" class="ser">
<div class="main container-fluid">
<h1>Catalog search</h1>
[% IF ( no_query ) %]
<div class="warning">You must enter a term to search on </div>
[% END %]
<form name="f" action="/cgi-bin/koha/serials/subscription-bib-search.pl" method="get">
<input type="hidden" name="op" value="do_search" />
<input type="hidden" name="type" value="intranet" />
<fieldset class="brief">
<ol>
<li>
<label for="q">Keyword: </label>
<input type="text" id="q" name="q" />
</li>
<li>
<label for="itemtypelimit">Limit item type to: </label>
<select name="itemtypelimit" id="itemtypelimit">
<option value="">All</option>
[%- FOREACH itemtypeloo IN itemtypeloop %]
<option value="[% itemtypeloo.code | html %]">
[% itemtypeloo.description | html %]
</option>
[%- END %]
</select>
</li>
[%- IF ccodeloop %]
<li>
<label for="ccodelimit">Limit collection code to: </label>
<select name="ccodelimit" id="ccodelimit">
<option value="">All</option>
[%- FOREACH ccodeloo IN ccodeloop %]
<option value="[% ccodeloo.code | html %]">
[% ccodeloo.description | html %]
</option>
[%- END %]
</select>
</li>
[%- END %]
</ol>
</fieldset>
<fieldset class="action">
<input type="submit" value="Search" />
</fieldset>
</form>
[% INCLUDE 'intranet-bottom.inc' popup_window=1 %]