Koha/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-bib-search.tt
Owen Leonard 068d0c43c1
Bug 33925: Improve translation of title tags: Serials
This patch updates serials templates so that title tags can be more
easily translated. Some templates have been updated for consistency as
well: Harmonizing page title, breaddrumb navigation, and page headers;
Adding "page-section" <div> where it was lacking.

To test, apply the patch and confirm that the following pages have the
correct title tags:

- Serials home
  - Serials search results
    - Subscription details
      - Subscription edit
        - Search for vendor
        - Search for bibliographic record
      - Subscription renew
      - Serial collection
      - Create and modify routing list
        - Preview routing list
          - View routing slip
      - Claims
      - Check expiration
      - With a subscription which has manual history enabled, click the
        "Edit history" link under the "Planning" tab.
     - Select multiple serial search results and batch edit
  - New subscription
  - Manage frequencies: Create and edit
  - Manage numbering patterns: Create and edit

Signed-off-by: Loïc Vassaux-Artur <loic.vassaux-artur@outlook.fr>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
2024-09-02 12:13:45 +02:00

65 lines
2.2 KiB
Text

[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>[% FILTER collapse %]
[% t("Catalog search") | html %] &rsaquo;
[% t("Serials") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="ser_subscription-bib-search" class="ser">
<div class="main container-fluid">
[% INCLUDE 'messages.inc' %]
<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" autofocus="autofocus" />
</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>
<nav class="navbar navbar-default fixed-bottom">
<div class="container-fluid">
<fieldset class="action">
<input type="submit" class="btn btn-primary" value="Search" />
<button type="button" class="btn btn-default close_window">Close window</button>
</fieldset>
</div>
</nav>
</form>
[% INCLUDE 'intranet-bottom.inc' popup_window=1 %]