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