Changeset 2009
- Timestamp:
- 11 Jul 2007, 04:59:50 (17 years ago)
- Location:
- WAeUP_SRP/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/WAeUPTool.py
r2008 r2009 770 770 'StudentClearance': 771 771 {'id': 'clearance', 772 'title': 'Clearance Data',772 'title': 'Clearance/Eligibility Record', 773 773 'wf_transition_return': 'close', 774 774 'wf_transition_admit': 'remain', -
WAeUP_SRP/trunk/profiles/default/workflows/waeup_student_subobject_wf/definition.xml
r1942 r2009 77 77 </permission-map> 78 78 <permission-map name="View" acquired="True"> 79 <permission-role>Anonymous</permission-role>80 79 <permission-role>Owner</permission-role> 81 80 <permission-role>SectionOfficer</permission-role> … … 106 105 new_state="closed" trigger="USER" 107 106 before_script="" after_script=""> 108 107 109 108 <guard> 110 109 <guard-role>SectionOfficer</guard-role> … … 118 117 new_state="content_addable" trigger="USER" 119 118 before_script="" after_script=""> 120 119 121 120 <guard> 122 121 <guard-role>SectionOfficer</guard-role> … … 130 129 new_state="created" trigger="USER" 131 130 before_script="" after_script=""> 132 131 133 132 <guard> 134 133 </guard> … … 139 138 new_state="" trigger="USER" before_script="" 140 139 after_script=""> 141 140 142 141 <guard> 143 142 </guard> … … 147 146 new_state="opened" trigger="USER" 148 147 before_script="" after_script=""> 149 148 150 149 <guard> 151 150 <guard-role>SectionOfficer</guard-role> -
WAeUP_SRP/trunk/skins/waeup_default/waeup_document_view.pt
r1783 r2009 1 1 <metal:body use-macro="here/main_template/macros/master"> 2 <metal:block fill-slot="header" 3 tal:define="s_name context/getStudentNameInContext; 4 is_so context/isSectionOfficer;"> 2 <metal:main fill-slot="main" 3 tal:define="info context/getDocumentInfo; 4 s_name context/getStudentNameInContext; 5 is_so context/isSectionOfficer;"> 6 7 <span tal:condition="not: info"> 8 <span tal:content="here/illegal_view" /> 9 </span> 10 <span tal:condition="info"> 11 5 12 <a href="" 6 13 tal:attributes="href string:${here/academicsParent}"> … … 8 15 Up one level 9 16 </a> 17 10 18 <h3> 11 19 <span tal:condition="python:is_so and s_name"> … … 14 22 <span tal:content="here/title_or_id" /> 15 23 </h3> 24 16 25 <br /> 17 </metal:block> 18 <metal:main fill-slot="main" 19 tal:define="info context/getDocumentInfo"> 26 20 27 <span tal:omit-tag="" 21 28 tal:content="structure python: info['doc'].render(layout_mode='view')" /> 22 29 30 </span> 23 31 </metal:main> 24 32 <metal:sub fill-slot="sub"/>
Note: See TracChangeset for help on using the changeset viewer.