Changeset 664 for WAeUP_SRP/trunk/skins
- Timestamp:
- 12 Oct 2006, 10:47:43 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_student/searchStudents.py
r663 r664 19 19 wf = context.portal_workflow 20 20 catalog = context.portal_catalog 21 student_wf_states = wf.waeup_student_wf.states.keys()22 info['wf_states'] = student_wf_states23 info['wf_states'][0] = " ----- "21 #student_wf_states = wf.waeup_student_wf.states.keys() 22 #info['wf_states'] = student_wf_states 23 #info['wf_states'][0] = " ----- " 24 24 lt = context.portal_layouts 25 25 pr = context.portal_registration … … 114 114 student = r.getObject() 115 115 student_rs = wf.getInfoFor(student,'review_state','keiner') 116 if with_review and student_rs != state:116 if (with_review and student_rs != state) or student in items: 117 117 continue 118 118 items.append(student)
Note: See TracChangeset for help on using the changeset viewer.