Koha/koha-tmpl/intranet-tmpl/prog/en/includes/letters-search.inc
Owen Leonard 248544e292
Bug 35850: Use template wrapper for tabs: Header search forms
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>
2024-03-22 15:47:34 +01:00

45 lines
2 KiB
HTML

[% USE raw %]
[% USE Koha %]
[% PROCESS 'html_helpers.inc' %]
<!-- letters-search.inc -->
[% WRAPPER tabs id="header_search" %]
[% WRAPPER tab_panels %]
[% WRAPPER tab_panel tabname="notices_search" bt_active= 1 %]
<form action="/cgi-bin/koha/tools/letter.pl" method="get">
<div class="form-title">
<label class="control-label" for="searchfield"><span class="control-text">Search notices</span> <i class="fa-solid fa-fw fa-comment-dots" aria-hidden="true"></i></label>
</div>
<div class="form-content">
<input class="head-searchbox form-control" type="text" name="searchfield" id="searchfield" value="" placeholder="Search existing notices"/>
</div>
<button type="submit" aria-label="Search"><i class="fa fa-arrow-right"></i></button>
</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= "notices_search" bt_active= 1 %]
<i class="fa-solid fa-fw fa-comment-dots" aria-hidden="true"></i> <span class="tab-title">Search notices</span>
[% END %]
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
[% WRAPPER tab_item tabname= "circ_search" %]
<i class="fa fa-fw 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 %]
<!-- /letters-search.inc -->