|
Lines 102-114
Link Here
|
| 102 |
<th>Edition</th> |
102 |
<th>Edition</th> |
| 103 |
<th>ISBN</th> |
103 |
<th>ISBN</th> |
| 104 |
<th>LCCN</th> |
104 |
<th>LCCN</th> |
| 105 |
<th>Actions</th> |
|
|
| 106 |
[% IF Koha.Preference('AdditionalFieldsInZ3950ResultSearch') != '' %] |
105 |
[% IF Koha.Preference('AdditionalFieldsInZ3950ResultSearch') != '' %] |
| 107 |
<th>Additional fields</th> |
106 |
<th>Additional fields</th> |
| 108 |
[% END %] |
107 |
[% END %] |
| 109 |
<th>MARC</th> |
108 |
<th>Actions</th> |
| 110 |
<th>Card</th> |
|
|
| 111 |
<th> </th> |
| 112 |
</tr></thead> |
109 |
</tr></thead> |
| 113 |
<tbody>[% FOREACH breeding_loo IN breeding_loop %] |
110 |
<tbody>[% FOREACH breeding_loo IN breeding_loop %] |
| 114 |
[% IF ( breeding_loo.breedingid ) %] |
111 |
[% IF ( breeding_loo.breedingid ) %] |
|
Lines 121-126
Link Here
|
| 121 |
<td>[% breeding_loo.edition %]</td> |
118 |
<td>[% breeding_loo.edition %]</td> |
| 122 |
<td>[% breeding_loo.isbn %]</td> |
119 |
<td>[% breeding_loo.isbn %]</td> |
| 123 |
<td>[% breeding_loo.lccn %]</td> |
120 |
<td>[% breeding_loo.lccn %]</td> |
|
|
121 |
[% IF Koha.Preference('AdditionalFieldsInZ3950ResultSearch') != '' %] |
| 122 |
<td> |
| 123 |
<dl> |
| 124 |
[% FOREACH addnumberfield IN breeding_loo.addnumberfields %] |
| 125 |
<dt>[% addnumberfield %]:</dt> |
| 126 |
<dd>[% breeding_loo.$addnumberfield %]</dd> |
| 127 |
[% END %] |
| 128 |
</dl> |
| 129 |
</td> |
| 130 |
[% END %] |
| 124 |
<td> |
131 |
<td> |
| 125 |
<div class="dropdown"> |
132 |
<div class="dropdown"> |
| 126 |
<a class="btn btn-default btn-xs dropdown-toggle" id="cataloguesearchactions[% breeding_loo.breedingid %]" role="button" data-toggle="dropdown" href="#"> |
133 |
<a class="btn btn-default btn-xs dropdown-toggle" id="cataloguesearchactions[% breeding_loo.breedingid %]" role="button" data-toggle="dropdown" href="#"> |
|
Lines 133-151
Link Here
|
| 133 |
</ul> |
140 |
</ul> |
| 134 |
</div> |
141 |
</div> |
| 135 |
</td> |
142 |
</td> |
| 136 |
[% IF Koha.Preference('AdditionalFieldsInZ3950ResultSearch') != '' %] |
|
|
| 137 |
<td> |
| 138 |
<dl> |
| 139 |
[% FOREACH addnumberfield IN breeding_loo.addnumberfields %] |
| 140 |
<dt>[% addnumberfield %]:</dt> |
| 141 |
<dd>[% breeding_loo.$addnumberfield %]</dd> |
| 142 |
[% END %] |
| 143 |
</dl> |
| 144 |
</td> |
| 145 |
[% END %] |
| 146 |
<td><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" class="previewData">MARC</a></td> |
| 147 |
<td><a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&importid=[% breeding_loo.breedingid %]" class="previewData">Card</a></td> |
| 148 |
<td><a href="#" class="import_record" data-breedingid="[% breeding_loo.breedingid %]" data-biblionumber="[% breeding_loo.biblionumber %]" data-frameworkcode="[% frameworkcode | uri %]">Import</a></td> |
| 149 |
</tr> |
143 |
</tr> |
| 150 |
[% END %] |
144 |
[% END %] |
| 151 |
[% END %]</tbody> |
145 |
[% END %]</tbody> |
| 152 |
- |
|
|