This patch updates search header includes so that the tabs use WRAPPER to build markup. To test, apply the patch rebuild the staff interface CSS. Test at least one page which uses each updated search include. Search header tabs should look correct and work correctly. - Acquisitions - Suggestions - Administration - Budgets and funds - Cities - Currencies - Desks - Patron categories - System preferences - Z39.50 - Advanced search - Authorities - Bibliographic detail page - Cataloging home page - Check in - Check out - Acquisitions -> Vendor -> Contracts - ERM - Staff interface home page - Serials - Tool -> Notices Signed-off-by: Martin AUBEUT <martin.aubeut@gmail.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
75 lines
3.9 KiB
HTML
75 lines
3.9 KiB
HTML
[% USE raw %]
|
|
[% USE Koha %]
|
|
[% PROCESS 'html_helpers.inc' %]
|
|
<!-- serials-search.inc -->
|
|
[% WRAPPER tabs id="header_search" %]
|
|
[% WRAPPER tab_panels %]
|
|
[% WRAPPER tab_panel tabname="subscription_search" bt_active= 1 %]
|
|
<form action="/cgi-bin/koha/serials/serials-search.pl" method="get">
|
|
[% IF ( routing ) %]
|
|
<input type="hidden" name="routing" value="[% routing | html %]" />
|
|
[% END %]
|
|
<input type="hidden" name="searched" value="1" />
|
|
|
|
<div class="form-title">
|
|
<label class="control-label" for="ISSN_filter"><span class="control-text">Search subscriptions</span> <i class="fa fa-fw fa-book" aria-hidden="true"></i></label>
|
|
</div>
|
|
|
|
<div class="form-content">
|
|
<input type="text" class="form-control" placeholder="ISSN" size="11" name="ISSN_filter" id="ISSN_filter" value="[% ISSN_filter | html %]" />
|
|
|
|
[% IF (UNIMARC) %]
|
|
<input type="text" class="form-control" placeholder="EAN" size="11" name="EAN_filter" id="EAN_filter" value="[% EAN_filter | html %]" />
|
|
[% END %]
|
|
|
|
<input type="text" class="form-control" placeholder="Title" size="11" name="title_filter" id="title_filter" value="[% title_filter | html %]" />
|
|
<button type="button" class="form-extra-content-toggle" title="More options"><i class="form-extra-content-icon fa-solid fa-sliders" aria-hidden="true"></i></button>
|
|
|
|
</div>
|
|
|
|
<button type="submit" aria-label="Search"><i class="fa fa-arrow-right"></i></button>
|
|
<div class="form-extra-content">
|
|
<div>
|
|
<label for="callnumber_filter">Call number:</label>
|
|
<input class="form-control" type="text" id="callnumber_filter" name="callnumber_filter" placeholder="Call number" value="[% callnumber_filter | html %]">
|
|
</div>
|
|
<div>
|
|
<label for="publisher_filter">Publisher:</label>
|
|
<input class="form-control" type="text" id="publisher_filter" name="publisher_filter" placeholder="Publisher" value="[% publisher_filter | html %]">
|
|
</div>
|
|
<div>
|
|
<label for="bookseller_filter">Vendor:</label>
|
|
<input class="form-control" type="text" id="bookseller_filter" name="bookseller_filter" placeholder="Vendor" value="[% bookseller_filter | html %]">
|
|
</div>
|
|
<div>
|
|
<a href="/cgi-bin/koha/serials/serials-search.pl">Advanced search</a>
|
|
</div>
|
|
</div> <!-- /.form-extra-content -->
|
|
</form>
|
|
[% END # /tab_panel %]
|
|
|
|
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
|
|
[% INCLUDE 'patron-search-box.inc' %]
|
|
[% END %]
|
|
[% IF ( CAN_user_catalogue ) %]
|
|
[% INCLUDE 'catalogue-search-box.inc' %]
|
|
[% END %]
|
|
|
|
[% END # /tab_panels %]
|
|
[% WRAPPER tabs_nav %]
|
|
[% WRAPPER tab_item tabname= "subscription_search" bt_active= 1 %]
|
|
<i class="fa fa-book" aria-hidden="true"></i> <span class="tab-title">Search subscriptions</span>
|
|
[% END %]
|
|
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
|
|
[% WRAPPER tab_item tabname= "circ_search" %]
|
|
<i class="fa fa-upload" aria-hidden="true"></i> <span class="tab-title">Check out</span>
|
|
[% END %]
|
|
[% END %]
|
|
[% IF ( CAN_user_catalogue ) %]
|
|
[% WRAPPER tab_item tabname= "catalog_search" %]
|
|
<i class="fa fa-fw fa-search" aria-hidden="true"></i> <span class="tab-title">Search catalog</span>
|
|
[% END %]
|
|
[% END %]
|
|
[% END # /tabs_nav %]
|
|
[% END # /WRAPPER tabs %]
|
|
<!-- /serials-search.inc -->
|