Commit 375f67fa authored by Yoshinori Okuji's avatar Yoshinori Okuji

The location of tal:repeat was wrong for the domain tree generation.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@8162 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent f2eb1c49
......@@ -39,13 +39,14 @@
<tr>
<td valign="top">
<select name="domain_root_url" onChange="submitAction(this.form, 'context/portal_selections/setDomainRoot')"
tal:attributes="onChange string:submitAction(this.form, '${context_url}/portal_selections/setDomainRoot')"
tal:repeat="c here/getDomainRootList">
<option value="base_domain"
tal:define="path python: c[0]; title python: c[1]"
tal:attributes="selected python: path == selected_domain_path; value path"
tal:content="title"
i18n:translate="" i18n:domain="ui">Base Domain</option>
tal:attributes="onChange string:submitAction(this.form, '${context_url}/portal_selections/setDomainRoot')">
<tal:block tal:repeat="c here/getDomainRootList">
<option value="base_domain"
tal:define="path python: c[0]; title python: c[1]"
tal:attributes="selected python: path == selected_domain_path; value path"
tal:content="title"
i18n:translate="" i18n:domain="ui">Base Domain</option>
</tal:block>
</select>
<table id="listbox_domain_tree_table" cellpadding="0" border="0"
tal:attributes="id string:${field_id}_domain_tree_table"
......
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