Changeset 8922
- Timestamp:
- 5 Jul 2012, 20:13:52 (12 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r8853 r8922 495 495 label = _('Applicant') 496 496 pnav = 3 497 hide_hint = False 497 498 498 499 @property -
main/waeup.kofa/trunk/src/waeup/kofa/browser/layout.py
r8736 r8922 192 192 grok.baseclass() 193 193 template = default_waeup_display_template 194 hide_hint = True 194 195 195 196 class KofaEditFormPage(UtilityView,EditForm): … … 216 217 if self.widgets.get('perm_address'): 217 218 self.widgets['perm_address'].cssClass = 'span8' 218 self.widgets['perm_address'].height = 10 219 self.widgets['perm_address'].height = 6 220 if self.widgets.get('next_kin_address'): 221 self.widgets['next_kin_address'].cssClass = 'span8' 222 self.widgets['next_kin_address'].height = 6 219 223 if self.widgets.get('description'): 220 224 self.widgets['description'].cssClass = 'span12' -
main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/widgets.pt
r8045 r8922 18 18 <div tal:content="structure widget/error">ERROR</div> 19 19 </tal:error> 20 <tal:hint tal:condition="widget/hint"> 20 <tal:hint 21 tal:condition="python: widget.hint and not getattr(view,'hide_hint',False)"> 21 22 <div class="hint" tal:content="structure widget/hint">HINT</div> 22 23 </tal:hint>
Note: See TracChangeset for help on using the changeset viewer.