Changeset 142
- Timestamp:
- 2 Nov 2005, 18:04:59 (19 years ago)
- Location:
- waeup_product/trunk/skins
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup_product/trunk/skins/waeup_default/getWAeUPLayouts.py
r141 r142 920 920 'ncols': 1, 921 921 'rows': [ 922 [{'widget_id': 'heading', 'ncols': 1},],922 #[{'widget_id': 'heading', 'ncols': 1},], 923 923 [{'widget_id': 'title', 'ncols': 1},], 924 924 [{'widget_id': 'text', 'ncols': 1},], … … 994 994 study_level = { ###( 995 995 'widgets': { 996 ' title': {996 'Title': { 997 997 'type': 'Select Widget', 998 998 'data': { 999 999 'title': '', 1000 1000 'fields': ('Title',), 1001 'is_required': True,1001 'is_required': False, 1002 1002 'label': 'Study Level', 1003 1003 'label_edit': 'Study Level', … … 1023 1023 'ncols': 1, 1024 1024 'rows': [ 1025 [{'widget_id': ' title', 'ncols': 1},],1025 [{'widget_id': 'Title', 'ncols': 1},], 1026 1026 ] 1027 1027 }, … … 1045 1045 }, 1046 1046 }, 1047 ' title': Title,1047 'Title': Title, 1048 1048 'text': Text, 1049 1049 'which_sex': { … … 1137 1137 'ncols': 1, 1138 1138 'rows': [ 1139 [{'widget_id': 'heading', 'ncols': 1},],1140 [{'widget_id': ' title', 'ncols': 1},],1139 #[{'widget_id': 'heading', 'ncols': 1},], 1140 [{'widget_id': 'Title', 'ncols': 1},], 1141 1141 [{'widget_id': 'text', 'ncols': 1},], 1142 1142 [{'widget_id': 'which_sex', 'ncols': 1},], -
waeup_product/trunk/skins/waeup_default/getWAeUPSchemas.py
r139 r142 321 321 322 322 course_schema = { ###( 323 'Title': { 324 'type': 'CPS String Field', 325 'data': { 326 'default_expr': '', 327 'is_searchabletext': True, 328 }, 329 }, 323 330 'heading': { 324 331 'type': 'CPS String Field', 325 332 'data': { 326 'default_expr': ' string:',333 'default_expr': '', 327 334 'is_searchabletext': True, 328 335 }, … … 374 381 accommodation = { ###( 375 382 'heading': { 383 'type': 'CPS String Field', 384 'data': { 385 'is_searchabletext': True, 386 }, 387 }, 388 'Title': { 376 389 'type': 'CPS String Field', 377 390 'data': { -
waeup_product/trunk/skins/waeup_faculty/create_course.py
r103 r142 24 24 create_action = 'create_course', 25 25 ) 26 if psm == 'invalid':26 if psm == 'invalid': 27 27 return context.common_edit_form(rendered = res, 28 28 create = 1, 29 29 type_name = type_name, 30 #psm = str(ds), 30 31 psm = 'Please correct your errors', 31 32 )
Note: See TracChangeset for help on using the changeset viewer.