- Timestamp:
- 28 Aug 2015, 07:49:07 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/interfaces.py
r13218 r13235 29 29 from waeup.kofa.schema import TextLineChoice, FormattedDate 30 30 from waeup.kofa.interfaces import ( 31 IKofaObject, validate_email, 31 IKofaObject, validate_email, validate_html, 32 32 SimpleKofaVocabulary) 33 33 from waeup.kofa.interfaces import MessageFactory as _ … … 177 177 title = _(u'Human readable description in HTML format'), 178 178 required = False, 179 constraint=validate_html, 179 180 default = u'''This text can been seen by anonymous users. 180 181 Here we put multi-lingual general information about the application procedure. … … 243 244 title = _(u'Human readable description in HTML format'), 244 245 required = False, 246 constraint=validate_html, 245 247 default = u'''This text can been seen by anonymous users. 246 248 Here we put multi-lingual information about the study courses provided, the application procedure and deadlines. … … 277 279 title = _(u'Human readable notice on application slip in HTML format'), 278 280 required = False, 279 )280 281 constraint=validate_html, 282 ) 281 283 282 284 hidden= schema.Bool(
Note: See TracChangeset for help on using the changeset viewer.