Changeset 472 for WAeUP_SRP/trunk/skins
- Timestamp:
- 2 Sep 2006, 14:51:14 (18 years ago)
- Location:
- WAeUP_SRP/trunk/skins
- Files:
-
- 4 added
- 5 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_academics/academics_contents_display_buttons.py
r454 r472 10 10 # $Id: folder_delete.py 30246 2005-12-02 20:10:18Z fguillaume $ 11 11 """ 12 buttons shouldn't be displayed if 12 buttons shouldn't be displayed if 13 13 """ 14 14 … … 17 17 'StudyLevel', 18 18 'Student', 19 'StudentA dmission',19 'StudentApplication', 20 20 'StudentClearance', 21 21 'StudentPersonal', -
WAeUP_SRP/trunk/skins/waeup_default/display_content.py
r454 r472 10 10 # $Id: folder_delete.py 30246 2005-12-02 20:10:18Z fguillaume $ 11 11 """ 12 content should be displayed if 12 content should be displayed if 13 13 """ 14 14 return context.portal_type in ('Certificate', 15 15 'Department', 16 'StudentA dmission',16 'StudentApplication', 17 17 'StudentClearance', 18 18 'StudentPersonal', -
WAeUP_SRP/trunk/skins/waeup_default/process_waeup_login.py
r350 r472 17 17 ##member_id = str(member) 18 18 ##ma = getattr(context,member_id) 19 ##jkw = {'a dmission_sc_pin': sc_pin}19 ##jkw = {'application_sc_pin': sc_pin} 20 20 ##jamb = getattr(ma,'JAMB') 21 21 ##jamb.getContent().edit(mapping=jkw) -
WAeUP_SRP/trunk/skins/waeup_student/acknowledge_slip.pt
r460 r472 18 18 <tal:block tal:condition="python:context.portal_type == 'Student'" tal:omit-tag=""> 19 19 <tal:block tal:define=" 20 a dm python:here.admission;21 a dm_proxy python:adm.getContent();20 appl python:here.application; 21 appl_proxy python:appl.getContent(); 22 22 clear python:here.clearance; 23 23 clear_proxy python:clear.getContent(); … … 29 29 30 30 31 <tal:block tal:content="structure python:a dm_proxy.render(cluster='adm_slip')" />32 <tal:block tal:content="structure python:clear_proxy.render(cluster='a dm_slip')" />33 <tal:block tal:content="structure python:pers_proxy.render(cluster='a dm_slip')" />31 <tal:block tal:content="structure python:appl_proxy.render(cluster='appl_slip')" /> 32 <tal:block tal:content="structure python:clear_proxy.render(cluster='appl_slip')" /> 33 <tal:block tal:content="structure python:pers_proxy.render(cluster='appl_slip')" /> 34 34 35 35
Note: See TracChangeset for help on using the changeset viewer.