Bug 6458: Incorrect translation processing - rotating_collections/...
Patch removes templates directives from HTML tags in the rotating collections module. The module is currently not interated into Koha's staff interface. Fixing templats to make Jenkins happy. Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
This commit is contained in:
parent
6d6c962627
commit
22804d6ff6
2 changed files with 6 additions and 3 deletions
|
@ -44,7 +44,8 @@
|
|||
<th><label for="barcode">Barcode: </label></td>
|
||||
<td><input type="text" id="barcode" name="barcode" /></td>
|
||||
<td>
|
||||
<input type="checkbox" name="removeItem" [% IF ( removeChecked ) %]checked[% END %] >
|
||||
[% IF ( removeChecked ) %]<input type="checkbox" name="removeItem" checked="checked" />
|
||||
[% ELSE %]<input type="checkbox" name="removeItem" />[% END %]
|
||||
<label for="removeItem">Remove Item from Collection</label>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -89,7 +89,8 @@
|
|||
<label for="title">Title: </label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="title" [% IF ( editColTitle ) %] value="[% editColTitle %]" [% END %] />
|
||||
[% IF ( editColTitle ) %]<input type="text" name="title" value="[% editColTitle %]" />
|
||||
[% ELSE %]<input type="text" name="title" />[% END %]
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
@ -98,7 +99,8 @@
|
|||
<label for="description">Description: </label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" size="50" name="description" [% IF ( editColDescription ) %] value="[% editColDescription %]" [% END %] />
|
||||
[% IF (editColDescription ) %]<input type="text" size="50" name="description" value="[ editColDescription %]" />
|
||||
[% ELSE %]<input type="text" size="50" name="description" />[% END %]
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
|
Loading…
Reference in a new issue