[Erp5-report] r8162 - /erp5/trunk/products/ERP5Form/www/ListBox_asHTML.zpt

nobody at svn.erp5.org nobody at svn.erp5.org
Fri Jun 23 15:55:00 CEST 2006


Author: yo
Date: Fri Jun 23 15:54:59 2006
New Revision: 8162

URL: http://svn.erp5.org?rev=8162&view=rev
Log:
The location of tal:repeat was wrong for the domain tree generation.

Modified:
    erp5/trunk/products/ERP5Form/www/ListBox_asHTML.zpt

Modified: erp5/trunk/products/ERP5Form/www/ListBox_asHTML.zpt
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Form/www/ListBox_asHTML.zpt?rev=8162&r1=8161&r2=8162&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Form/www/ListBox_asHTML.zpt (original)
+++ erp5/trunk/products/ERP5Form/www/ListBox_asHTML.zpt Fri Jun 23 15:54:59 2006
@@ -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"




More information about the Erp5-report mailing list