- Timestamp:
- 11 Jun 2011, 05:59:01 (14 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates
- Files:
-
- 2 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> -
main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/applicantscontainermanagepage.pt
r6344 r6345 33 33 <tal:block repeat="widget view/widgets"> 34 34 <tr> 35 <td class="label" tal:define="hint widget/hint"> 36 <label tal:condition="python:hint" tal:attributes="for widget/name"> 37 <span class="required" tal:condition="widget/required" >* 38 </span> 39 <span i18n:translate="" tal:content="widget/label">label 40 </span>: 35 <td class="label"> 36 <label tal:attributes="for widget/name"> 37 <span class="required" tal:condition="widget/required">*</span> 38 <span i18n:translate="" tal:content="widget/label">label</span>: 41 39 </label> 42 <label tal:condition="python:not hint" tal:attributes="for widget/name"> 43 <span class="required" tal:condition="widget/required" >* 44 </span> 45 <span i18n:translate="" tal:content="widget/label">label 46 </span>: 47 </label> </td> 40 </td> 48 41 <td class="field"> 49 < divclass="widget" tal:content="structure widget">42 <span class="widget" tal:content="structure widget"> 50 43 <input type="text" /> 51 </div> 52 <div class="error" tal:condition="widget/error"> 53 <span tal:replace="structure widget/error">error 54 </span> 55 </div> </td> 44 </span> 45 <tal:error tal:condition="widget/error"> 46 <span tal:replace="structure widget/error">error</span> 47 </tal:error> 48 <tal:hint tal:condition="widget/hint"> 49 <span class="hint" tal:content="structure widget/hint">hint</span> 50 </tal:hint> 51 </td> 56 52 </tr> 57 53 </tal:block>
Note: See TracChangeset for help on using the changeset viewer.