Changeset 3761 for WAeUP_SRP/trunk
- Timestamp:
- 13 Nov 2008, 05:47:19 (16 years ago)
- Location:
- WAeUP_SRP/trunk/skins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_design/WAeUP_Student/render.css.dtml
r1739 r3761 1 1 .portalTabTabStyle ul.cpsskinsMenu li a{background:url(waeup_student_tab.png) left top no-repeat} 2 .colorBarColor{border-color:# FFCE81;background-color:#FFCE81;color:#000000}3 .colorBarAreaColor{border-color:# FFCE81;background-color:#FFF;color:#000000}2 .colorBarColor{border-color:#EEDD88;background-color:#EEDD88;color:#000000} 3 .colorBarAreaColor{border-color:#EEDD88;background-color:#FFF;color:#000000} 4 4 -
WAeUP_SRP/trunk/skins/waeup_fceokene/getSchoolFee.py
r3760 r3761 28 28 d['all'] = 16400 29 29 # all repeaters 30 if brain.verdict == 'C':30 elif brain.verdict == 'C': 31 31 if brain.department in ARTS: 32 32 d['all'] = 10170 … … 51 51 else: 52 52 d['all'] = 12545 53 # NCE III spillover 54 elif str(brain.level) in ('300','310','320') and brain.verdict == 'B': 55 if brain.department in ARTS: 56 d['all'] = 10170 57 else: 58 d['all'] = 10645 53 59 else: 54 60 d['all'] = 0 … … 90 96 else: 91 97 d['all'] = 18900 98 # NCE V spillover 99 elif str(brain.level) in ('500','510','520') and brain.verdict == 'B': 100 if brain.department in ARTS: 101 d['all'] = 16900 102 else: 103 d['all'] = 17400 92 104 else: 93 d['all'] = 0 105 d['all'] = 0 106 94 107 95 108 -
WAeUP_SRP/trunk/skins/waeup_fceokene/goto_interswitch_form.pt
r3690 r3761 12 12 <input type="hidden" tal:attributes="name python:arg[0];value python:arg[1]" /> 13 13 </span> 14 15 <span tal:replace = "structure info/xml_data" /> 16 14 17 <table> 15 18 <tr> … … 42 45 class="standalone" 43 46 name="goto_bank" 44 value="Proceed to Payment Gateway"47 value="Proceed to Interswitch Payment Gateway" 45 48 /> 46 49 </form> -
WAeUP_SRP/trunk/skins/waeup_fceoyo/getSchoolFee.py
r3760 r3761 63 63 else: 64 64 d['all'] = 6800 65 # NCE III repeaters 66 elif str(brain.level) in ('300','310') and brain.verdict == 'C':65 # NCE III repeaters and spillover 66 elif str(brain.level) in ('300','310') and brain.verdict in ('B','C'): 67 67 if brain.department in ARTS: 68 68 d['all'] = 4950 … … 88 88 elif str(brain.level) in ('300','310','320'): 89 89 d['all'] = 9500 90 # NCE IV spillover 91 elif str(brain.level) in ('400','410','420') and brain.verdict == 'B': 92 d['all'] = 9000 90 93 else: 91 94 d['all'] = 0
Note: See TracChangeset for help on using the changeset viewer.