Changeset 543 for WAeUP_SRP/trunk/skins/waeup_default
- Timestamp:
- 24 Sep 2006, 07:44:32 (18 years ago)
- Location:
- WAeUP_SRP/trunk/skins/waeup_default
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_default/campus_index.py
r542 r543 1 ## Script (Python) " home_index"1 ## Script (Python) "campus_index" 2 2 ##bind container=container 3 3 ##bind context=context … … 19 19 20 20 if pm.isAnonymousUser(): 21 return redirect("%s/campus_anonymous_view" % request.get('URL1')) 21 return redirect("%s/campus_anonymous_view" % request.get('URL1')) 22 22 23 23 campus = context.portal_catalog(meta_type = "University")[-1].getObject() … … 29 29 if isManager: 30 30 return redirect("%s/campus_manager_view" % campus.absolute_url()) 31 31 32 32 if isStudent: 33 33 return redirect("%s/students_index" % campus.students.absolute_url()) -
WAeUP_SRP/trunk/skins/waeup_default/index_html.py
r542 r543 27 27 28 28 if isManager: 29 return redirect("%s/srp_manager_view" % absolute_url())29 return redirect("%s/srp_manager_view" % context.absolute_url()) 30 30 31 31 if isStudent: 32 return redirect("%s/srp_anonymous_view" % absolute_url())32 return redirect("%s/srp_anonymous_view" % context.absolute_url()) 33 33 -
WAeUP_SRP/trunk/skins/waeup_default/login_staff.pt
r542 r543 6 6 tal:define="username request/username | request/__ac_name | nothing"> 7 7 8 <h3 i18n:translate="">St udentLogin</h3>8 <h3 i18n:translate="">Staff Login</h3> 9 9 10 10 <form id="" action="" method="post" 11 11 tal:attributes="action string:${base_url}logged_in"> 12 13 14 <p>This is the frontpage of Uniben's Student Registration Portal (SRP) which is part of the West African e-University Project. For further information see15 <a href="" tal:attributes="href string:http://waeup.org">waeup.org</a>. </p>16 12 17 13 <p>You've chosen the portal's 'back entrance' to log in. This entrance is dedicated to university staff members to maintain the portal's database.</p> -
WAeUP_SRP/trunk/skins/waeup_default/portlet_waeup_status_display.pt
r517 r543 1 1 <tal:block define="item nocall:options/context_obj; 2 2 info item/getContentInfo; 3 base_url python: request.get('cpsskins_base_url');"> 3 base_url python: request.get('cpsskins_base_url'); 4 status_list python: ['checked', 'unchecked', 'opened', 'closed', 5 'created', 'admission_pin_entered', 'admission_applied'];"> 4 6 5 <span tal:condition="python:path('info/review_state') !='work'">7 <span tal:condition="python:path('info/review_state') in status_list "> 6 8 Status: <span tal:content="info/review_state" /> 7 9 </ span>
Note: See TracChangeset for help on using the changeset viewer.