Bug 19249: Fix date inputs on patron quick add form
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / biblio-title.inc
1 [%- IF ( link ) -%]
2     <a href="[%- PROCESS biblio_a_href biblionumber => biblio.biblionumber -%]" class="title">
3 [%- END -%]
4
5 [%- IF ( biblio.title ) -%]
6     <span class="biblio-title">[%- biblio.title | html -%]</span>
7 [%- ELSE -%]
8     <span>No title</span>
9 [%- END -%]
10 [%- IF ( biblio.medium ) -%]
11     <span class="biblio-medium">[%- biblio.medium | html -%]</span>
12 [%- END -%]
13 [%- FOREACH subtitle IN biblio.subtitle.split(' \\| ') -%][%- IF Koha.Preference('marcflavour')=='UNIMARC' -%],[%- END -%]
14     <span class="subtitle">[%- subtitle | html -%]</span>
15 [%- END -%]
16 [%- part_numbers = biblio.part_number.split(' \\| ') -%]
17 [%- part_names = biblio.part_name.split(' \\| ') -%]
18 [%- i = 0 -%]
19 [%- WHILE ( part_numbers.$i.defined || part_names.$i.defined ) -%]
20     [%- IF ( part_numbers.$i.defined ) -%]
21         <span class="part-number">[%- part_numbers.$i | html -%]</span>
22     [%- END -%]
23     [%- IF ( part_names.$i.defined ) -%]
24         <span class="part-name">[%- part_names.$i | html -%]</span>
25     [%- END -%]
26     [%- i = i + 1 -%]
27 [%- END -%]
28
29 [%- IF ( link ) -%]
30     </a>
31 [%- END -%]