Changeset 188
- Timestamp:
- 17 Nov 2005, 08:55:12 (19 years ago)
- Location:
- waeup_product/trunk/skins
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup_product/trunk/skins/waeup_default/getWAeUPLayouts.py
r182 r188 946 946 }, 947 947 'jamb_aggregate': { 948 'type': ' IntWidget',949 'data': { 950 'title': 'Ag regate',948 'type': 'String Widget', 949 'data': { 950 'title': 'Aggregate', 951 951 'fields': ('jamb_aggregate',), 952 952 'is_required': False, 953 'label': ' Score',954 'label_edit': ' Score',953 'label': 'JAMB Score', 954 'label_edit': 'JAMB Score', 955 955 'description': '', 956 956 'help': '', … … 1011 1011 }###) 1012 1012 1013 1013 1014 1014 student_eligibility = { ###( 1015 1015 'widgets': eli_widgets, … … 1019 1019 'ncols': 1, 1020 1020 'rows': [ 1021 [{'widget_id': 'jamb_results', 'ncols': 1},],1021 #[{'widget_id': 'jamb_results', 'ncols': 1},], 1022 1022 [{'widget_id': 'jamb_aggregate', 'ncols': 1},], 1023 1023 [{'widget_id': 'jamb_listing_date', 'ncols': 1},], … … 1036 1036 'ncols': 1, 1037 1037 'rows': [ 1038 [{'widget_id': 'jamb_results', 'ncols': 1},],1038 #[{'widget_id': 'jamb_results', 'ncols': 1},], 1039 1039 [{'widget_id': 'jamb_aggregate', 'ncols': 1},], 1040 [{'widget_id': 'jamb_listing_date', 'ncols': 1},],1040 #[{'widget_id': 'jamb_listing_date', 'ncols': 1},], 1041 1041 [{'widget_id': 'faculty', 'ncols': 1},], 1042 1042 [{'widget_id': 'course', 'ncols': 1},], … … 1130 1130 'fields': ('passport',), 1131 1131 'is_required': False, 1132 'label': ' scanned Passport',1133 'label_edit': ' scanned Passport',1132 'label': 'Scanned Passport', 1133 'label_edit': 'Scanned Passport', 1134 1134 'description': '', 1135 1135 'help': '', … … 1613 1613 }, 1614 1614 'aggregate': { 1615 'type': ' IntWidget',1615 'type': 'String Widget', 1616 1616 'data': { 1617 1617 'title': 'Agregate', 1618 1618 'fields': ('aggregate',), 1619 1619 'is_required': False, 1620 'label': ' Score',1621 'label_edit': ' Score',1620 'label': 'JAMB Score', 1621 'label_edit': 'JAMB Score', 1622 1622 'description': '', 1623 1623 'help': '', -
waeup_product/trunk/skins/waeup_default/getWAeUPTypes.py
r184 r188 298 298 'id' : 'eligibility', 299 299 'name' : 'Eligibility Data', 300 'action' : ' eligibility',300 'action' : 'ELIGIBILITY', 301 301 'condition': 'object/memberIsOwner', 302 302 'permission': (ModifyPortalContent,), -
waeup_product/trunk/skins/waeup_student/check_admission_form.pt
r169 r188 16 16 <h1> Check Your Admission Status! </h1> 17 17 <div tal:replace="structure rendered_main" /> 18 Instructions :<br />18 <p>Instructions :</p> 19 19 <ul> 20 20 <li>Buy an Admission Check Scratch Card </li> -
waeup_product/trunk/skins/waeup_student/clearance_form.pt
r173 r188 14 14 </metal:block> 15 15 <metal:block fill-slot="main"> 16 <h1> Clearance and Eligibility Processing</h1>16 <h1>Start Clearance Process!</h1> 17 17 <div tal:replace="structure rendered_main" /> 18 Instructions :<br />18 <p>Instructions :</p> 19 19 <ul> 20 20 <li>Buy a Clearance Scratch Card </li> -
waeup_product/trunk/skins/waeup_student/eligibility_form.pt
r179 r188 13 13 </metal:block> 14 14 <metal:block fill-slot="main"> 15 <h1> Fill in your post-primary school results</h1>16 15 <div tal:replace="structure rendered_main" /> 17 16 </metal:block> -
waeup_product/trunk/skins/waeup_student/register_level.py
r187 r188 26 26 if psm == 'invalid': 27 27 return context.register_level_form(rendered = res, 28 create = 1, 29 type_name = type_name, 30 psm = 'Please correct your errors', 28 psm = "Please correct your input", 29 ds = ds, 31 30 ) 32 31 elif psm == '': 33 32 return context.register_level_form(rendered = res, 34 create = 1, 35 type_name = type_name, 36 psm = psm, 33 psm = None, 34 ds = ds, 37 35 ) 38 36 … … 43 41 if level: 44 42 return context.register_level_form(rendered = res, 45 create = 1, 46 type_name = type_name, 47 psm = "You have already registered for Level %s" % voc.get(level_id) 43 psm = "You have already registered for Level %s" % voc.get(level_id), 44 ds = ds, 48 45 ) 49 46
Note: See TracChangeset for help on using the changeset viewer.