Fix for Bug 6458 - incorrect parsing result in translation processing
Fixing improperly nested template logic inside HTML tags in aqplan template. Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
This commit is contained in:
parent
7950a8f5af
commit
2c51064ab1
1 changed files with 6 additions and 2 deletions
|
@ -145,8 +145,12 @@ YAHOO.util.Event.onAvailable("popmenu", function () {
|
|||
<tbody>
|
||||
[% FOREACH budget_line IN budget_lines %]
|
||||
[% UNLESS ( loop.odd ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
|
||||
|
||||
<td align="left"[% IF ( budget_line.budget_lock ) %] class="locked" title="Fund locked"[% END %]><a href="/cgi-bin/koha/admin/aqbudgets.pl?op=add_form&budget_id=[% budget_line.budget_id %]&budget_period_id=[% budget_line.budget_period_id %]">[% budget_line.budget_name_indent %]</a></td>
|
||||
[% IF ( budget_line.budget_lock ) %]
|
||||
<td align="left" class="locked" title="Fund locked">
|
||||
[% ELSE %]
|
||||
<td align="left">
|
||||
[% END %]
|
||||
<a href="/cgi-bin/koha/admin/aqbudgets.pl?op=add_form&budget_id=[% budget_line.budget_id %]&budget_period_id=[% budget_line.budget_period_id %]">[% budget_line.budget_name_indent %]</a></td>
|
||||
<td><span id="budget_tot_formatted_[% budget_line.budget_id %]">[% budget_line.budget_amount_formatted %] </span>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue