Changeset 6345 for main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/applicantscontaineraddpage.pt
- Timestamp:
- 11 Jun 2011, 05:59:01 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/applicantscontaineraddpage.pt
r6344 r6345 17 17 <table class="zebra"> 18 18 <tbody> 19 19 <tal:block repeat="widget view/widgets"> 20 20 <tr> 21 <td class="label" tal:define="hint widget/hint"> 22 <label tal:condition="python:hint" 23 tal:attributes="for widget/name"> 24 <span class="required" tal:condition="widget/required" 25 >*</span><span i18n:translate="" 26 tal:content="widget/label">label</span> 27 </label> 28 <label tal:condition="python:not hint" 29 tal:attributes="for widget/name"> 30 <span class="required" tal:condition="widget/required" 31 >*</span><span i18n:translate="" 32 tal:content="widget/label">label</span>: 21 <td class="label"> 22 <label tal:attributes="for widget/name"> 23 <span class="required" tal:condition="widget/required">*</span> 24 <span i18n:translate="" tal:content="widget/label">label</span>: 33 25 </label> 34 26 </td> 35 27 <td class="field"> 36 < divclass="widget" tal:content="structure widget">28 <span class="widget" tal:content="structure widget"> 37 29 <input type="text" /> 38 </ div>39 < div class="error"tal:condition="widget/error">30 </span> 31 <tal:error tal:condition="widget/error"> 40 32 <span tal:replace="structure widget/error">error</span> 41 </div> 33 </tal:error> 34 <tal:hint tal:condition="widget/hint"> 35 <span class="hint" tal:content="structure widget/hint">hint</span> 36 </tal:hint> 42 37 </td> 43 38 </tr> 44 39 </tal:block> 45 40 </tbody> 46 41 </table>
Note: See TracChangeset for help on using the changeset viewer.