Changeset 12910
- Timestamp:
- 7 May 2015, 04:31:34 (10 years ago)
- Location:
- main/waeup.kofa/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/docs/source/userdocs/academics.rst
r12909 r12910 78 78 .. note:: 79 79 80 Only the department, which offers the course, decides how many 81 credits can be earned, which pass mark must be achieved and in which 82 semester the course can be taken. The manager of the department 83 cannot decide whether a course is mandatory or not, or at which 84 study level the course has to be taken when studying a certain 85 programme. This information is stored in `CertificateCourse` objects, 86 see below. Therefore it does not make sense to speak e.g. of a 300 87 level course. Also course codes like ``AEE311``, which tell the 88 student that the course is primarily intended for 300 level students, 89 is somehow misleading. There might be other study programmes which 80 Only the manager of the department, which offers the course, 81 decides how many credits can be earned, which pass mark must be 82 achieved and in which semester the course can be taken. The 83 manager cannot decide whether a course is mandatory or not, or 84 at which study level the course has to be taken when studying a 85 certain programme. This information is stored in 86 `CertificateCourse` objects, see below. Therefore it does not 87 make sense to speak e.g. of a 300 level course. Also course 88 codes like ``AEE311``, which tell the student that the course 89 is primarily intended for 300 level students, is somehow 90 misleading. There might be other study programmes which 90 91 recommend to take this course earlier or later. 92 91 93 92 94 The following :ref:`local roles <local_roles>` can be assigned at … … 117 119 :noindex: 118 120 121 .. warning:: 122 123 Do not remove certificates without backing up the student data 124 of this department. If a certificate or even one of its parent 125 containers is removed, students studying this programme are 126 'homeless' and need to be re-allocated to another study 127 programme. 128 119 129 Certificate Courses 120 130 =================== -
main/waeup.kofa/trunk/src/waeup/kofa/browser/pages.py
r12902 r12910 1725 1725 taboneactions = [_('Add faculty'), _('Remove selected'),_('Cancel')] 1726 1726 subunits = _('Faculties') 1727 doclink = DOCLINK + '/academics.html' 1727 1728 1728 1729 @property … … 1759 1760 form_fields = grok.AutoFields(IFaculty) 1760 1761 pnav = 1 1762 doclink = DOCLINK + '/academics.html#faculties' 1761 1763 1762 1764 @action(_('Add faculty'), style='primary') … … 1811 1813 tabthreeactions1 = [_('Remove selected local roles')] 1812 1814 tabthreeactions2 = [_('Add local role')] 1815 doclink = DOCLINK + '/academics.html#faculties' 1813 1816 1814 1817 form_fields = grok.AutoFields(IFaculty).omit('code') … … 1907 1910 form_fields = grok.AutoFields(IDepartment) 1908 1911 pnav = 1 1912 doclink = DOCLINK + '/academics.html#departments' 1909 1913 1910 1914 @action(_('Add department'), style='primary') … … 1976 1980 tabfouractions1 = [_('Remove selected local roles')] 1977 1981 tabfouractions2 = [_('Add local role')] 1982 doclink = DOCLINK + '/academics.html#departments' 1978 1983 1979 1984 form_fields = grok.AutoFields(IDepartment).omit('code') … … 2049 2054 form_fields = grok.AutoFields(ICourse) 2050 2055 pnav = 1 2056 doclink = DOCLINK + '/academics.html#courses' 2051 2057 2052 2058 @action(_('Add course')) … … 2090 2096 form_fields = grok.AutoFields(ICertificate) 2091 2097 pnav = 1 2098 doclink = DOCLINK + '/academics.html#certificates' 2092 2099 2093 2100 @action(_('Add certificate')) … … 2151 2158 tabtwoactions1 = [_('Remove selected local roles')] 2152 2159 tabtwoactions2 = [_('Add local role')] 2160 doclink = DOCLINK + '/academics.html#courses' 2153 2161 2154 2162 form_fields = grok.AutoFields(ICourse).omit('code') … … 2200 2208 pnav = 1 2201 2209 label = _('Edit certificate') 2210 doclink = DOCLINK + '/academics.html#certificates' 2202 2211 2203 2212 form_fields = grok.AutoFields(ICertificate).omit('code') … … 2252 2261 pnav = 1 2253 2262 label = _('Add certificate course') 2263 doclink = DOCLINK + '/academics.html#certificate-courses' 2254 2264 2255 2265 @action(_('Add certificate course')) … … 2305 2315 label = _('Edit certificate course') 2306 2316 pnav = 1 2317 doclink = DOCLINK + '/academics.html#certificate-courses' 2307 2318 2308 2319 @action(_('Save and return'), style='primary') -
main/waeup.kofa/trunk/src/waeup/kofa/students/browser.py
r12901 r12910 3119 3119 label = _('Student Data Exports') 3120 3120 pnav = 1 3121 doclink = DOCLINK + '/datacenter/export.html#student-data-exporters' 3121 3122 3122 3123 def update(self, CREATE=None, DISCARD=None, job_id=None):
Note: See TracChangeset for help on using the changeset viewer.