Commit b76c464a authored by Aurel's avatar Aurel

$ symbol needs to be escaped with Chameleon; more

parent 3fadeadc
......@@ -46,7 +46,7 @@ Copy of unittest <a href="https://lab.nexedi.com/nexedi/erp5/blob/master/product
<td>value=account_type/asset/receivable</td></tr>
<tr><td>type</td>
<td>//input[@name="field_your_at_date"]</td>
<td>&#36;{year}-${month}-01</td></tr>
<td>&#36;{year}-&#36;{month}-01</td></tr>
<tr><td>click</td><!-- Check because it is unchecked by default -->
<td>//input[@type="checkbox" and @name="field_your_detailed"]</td><td></td></tr>
<tr><td>type</td>
......@@ -103,7 +103,7 @@ Copy of unittest <a href="https://lab.nexedi.com/nexedi/erp5/blob/master/product
<!-- skip invoice_number field -->
<!-- skip transaction_reference field -->
<tr><td>verifyElementPresent</td>
<td>&#36;{current_row}/td[6]//p[@data-date="&#36;{last_year}-${last_month}-${last_day}"]</td><td></td></tr>
<td>&#36;{current_row}/td[6]//p[@data-date="&#36;{last_year}-&#36;{last_month}-&#36;{last_day}"]</td><td></td></tr>
<tr><td>assertText</td>
<td>&#36;{current_row}/td[7]/a</td>
<td>Sale Invoice Transaction</td></tr>
......
......@@ -48,7 +48,7 @@ Copy of unittest <a href="https://lab.nexedi.com/nexedi/erp5/blob/master/product
<td>value=ledger/accounting/general</td></tr>
<tr><td>type</td>
<td>//input[@name="field_your_at_date"]</td>
<td>&#36;{year}-${month}-${day}</td></tr>
<td>&#36;{year}-&#36;{month}-&#36;{day}</td></tr>
<tr><td>click</td><!-- Uncheck because it is checked by default -->
<td>//input[@type="checkbox" and @name="field_your_omit_balanced_accounts"]</td><td></td></tr>
......
......@@ -5,7 +5,7 @@
<ul tal:define="exists_subsections python: section['subsection'] is not None;
show_collapse python: collapse_depth==section['level'] and exists_subsections;
class_name string:level-${section/level};
class_name string:level-&#36;{section/level};
class python: test(show_collapse, 'collapse-list-node %s' %class_name , class_name);
subsection_html python: here.WebSection_viewSubsectionRenderer(section_list = section['subsection'],
collapse_depth=collapse_depth);"
......
......@@ -18,7 +18,7 @@
<tal:block tal:repeat="column_index python: range(0, columns)">
<div tal:condition="python: columns>=1+column_index"
tal:attributes="class column_css_class;
id string:portal-column-${column_index}">
id string:portal-column-&#36;{column_index}">
<tal:block tal:condition="python: len(layout)>=1+column_index"
tal:replace="structure python:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment