- Timestamp:
- 16 Nov 2007, 09:23:11 (17 years ago)
- Location:
- WAeUP_SRP
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/base/skins/waeup_student/getStudyCourseInfo.py
r2664 r2674 86 86 if review_state != 'content_addable' and student_review_state == 'school_fee_paid': #and context.isStudent(): 87 87 wftool.doActionFor(context,'close_for_edit') 88 88 89 89 has_paid = student_review_state == 'school_fee_paid' 90 90 … … 92 92 current_level not in levels and\ 93 93 (previous_verdict in ('A','B','C','F','J','L','M') or\ 94 sbrain.level == '100' or\ 95 (sbrain.mode.startswith('de') and sbrain.level == '200')) 94 current_level == '100' or\ 95 (sbrain.mode.startswith('de') and current_level == '200')) 96 97 missing_data = has_paid and\ 98 current_level not in levels and\ 99 not (previous_verdict or sbrain.level) and\ 100 not (current_level == '100' or\ 101 (sbrain.mode.startswith('de') and current_level == '200')) 96 102 97 103 info['missing_data'] = missing_data 98 104 levels.sort() 99 105 info['create_level'] = None 100 106 student_levels_voc = context.portal_vocabularies.student_levels 101 if may_register:107 if not missing_data: 102 108 info['create_level'] = current_level 103 109 info['create_level_str'] = student_levels_voc.get(current_level) -
WAeUP_SRP/base/skins/waeup_student/study_course_view.pt
r2648 r2674 136 136 value string: Register Courses for ${info/create_level_str}" 137 137 /> 138 <font color="red">139 <br /><br />140 Creating the course list may take several minutes. Please be patient, don't click twice!141 </font>142 138 </td> 143 139 </tr> 144 140 </table> 145 </form> 141 </form> 142 143 <div tal:condition="not: create_level"> 144 <font color='red'> 145 Your faculty has not yet provided the results and verdict of the previous session. 146 </font> 147 </div> 146 148 147 149 </span> -
WAeUP_SRP/uniben/profiles/default/properties.xml
r2629 r2674 4 4 <property name="enable_password_reset" type="boolean">True</property> 5 5 <property name="enable_portal_joining" type="boolean">False</property> 6 <property name="session" type="string">200 6/2007</property>6 <property name="session" type="string">2007/2008</property> 7 7 <property name="static_dir" type="string">static/</property> 8 8 </site>
Note: See TracChangeset for help on using the changeset viewer.