Changeset 13098 for main/waeup.kofa/trunk
- Timestamp:
- 23 Jun 2015, 09:27:05 (9 years ago)
- Location:
- main/waeup.kofa/trunk
- Files:
-
- 1 added
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/docs/source/userdocs/applicants/workflow.rst
r13088 r13098 7 7 mentioned application workflow is shown here:: 8 8 9 initialized9 initialized 10 10 | 11 11 |a … … 27 27 |f 28 28 | 29 created29 created 30 30 31 31 … … 58 58 59 59 60 61 62 .. _application_workflow_batch_processing:63 64 Workflow Batch Processing65 =========================66 67 68 60 .. _application_history: 69 61 … … 71 63 =================== 72 64 65 All transitions are automatically logged in applicants.log and the applicant's history. And also the import of workflow states is recorded in the logfile and the history, see :ref:`student_history` for further information. This is a sample history of an applicant which passes through the application process without any complications:: 66 67 2015-06-23 08:56:23 UTC - Application initialized by Anonymous 68 2015-06-23 08:57:42 UTC - Application started by Demo Applicant 69 2015-06-23 08:59:41 UTC - Payment approved by Benny Goodman 70 2015-06-23 09:00:50 UTC - Application submitted by Demo Applicant 71 2015-06-23 09:01:13 UTC - Applicant admitted by Benny Goodman 72 2015-06-23 09:02:36 UTC - Student record created (K1000003) by Benny Goodman 73 74 Benny Goodman is the name of an applications manager. If the workflow state is set by import, the following message would 75 have been added instead:: 76 77 2015-06-23 09:01:13 UTC - State 'admitted' set by Benny Goodman 78 79 Applicant histories are exportable but cannot be imported. -
main/waeup.kofa/trunk/docs/source/userdocs/browsing.rst
r13090 r13098 30 30 Data' tab in the navigation bar. 31 31 32 .. _navigation_bar: 33 34 The navigation bar for an anonymous user: 35 36 .. image:: navbar_anon.png 37 38 The navigation bar for a student with drop-down menue: 39 40 .. image:: navbar_student.png 41 42 The navigation bar for an officer with lots of permissions: 43 44 .. image:: navbar_officer.png 45 32 46 Officers see a double-column theme after logging in. The left column 33 47 contains a box which contains links to the user's preferences (My … … 40 54 pages of an applicant or student record respectively. 41 55 42 .. image:: navbox.png 43 :scale: 50 % 44 45 46 .. _navigation_bar: 47 48 Navigation Bar 49 ============== 50 51 The navigation bar of an anonymous user: 52 53 .. image:: navbar_anon.png 54 55 The navigation bar of an officer with lots of permissions: 56 57 .. image:: navbar_officer.png 58 59 The navigation bar of a student with drop-down menue: 60 61 .. image:: navbar_student.png 56 .. image:: multicolumn.png 62 57 63 58 -
main/waeup.kofa/trunk/docs/source/userdocs/students/workflow.rst
r13083 r13098 156 156 However, these logfiles can only be accessed by some officers and 157 157 are hidden from students. Since Kofa takes up the cause of 158 transparancy, we were of the opinion, that also students must know,158 transparancy, we are of the opinion, that also students must know, 159 159 when and by whom the state of their record was changed. Therefore we 160 160 store all workflow-relevant changes additionally in the student -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/permissions.py
r12847 r13098 88 88 89 89 class ApplicationsManager(grok.Role): 90 """The Applications Officer is allowed to edit all application records.91 The role al lows alsoto add payment tickets.90 """The Applications Manager is allowed to edit all application records. 91 The role also allows to add payment tickets. 92 92 """ 93 93 grok.name('waeup.ApplicationsManager')
Note: See TracChangeset for help on using the changeset viewer.