Changeset 12910


Ignore:
Timestamp:
7 May 2015, 04:31:34 (10 years ago)
Author:
Henrik Bettermann
Message:

Add doclinks.

Add warning to Certificates section.

Location:
main/waeup.kofa/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/docs/source/userdocs/academics.rst

    r12909 r12910  
    7878.. note::
    7979
    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
    9091  recommend to take this course earlier or later.
     92
    9193
    9294The following :ref:`local roles <local_roles>` can be assigned at
     
    117119   :noindex:
    118120
     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
    119129Certificate Courses
    120130===================
  • main/waeup.kofa/trunk/src/waeup/kofa/browser/pages.py

    r12902 r12910  
    17251725    taboneactions = [_('Add faculty'), _('Remove selected'),_('Cancel')]
    17261726    subunits = _('Faculties')
     1727    doclink = DOCLINK + '/academics.html'
    17271728
    17281729    @property
     
    17591760    form_fields = grok.AutoFields(IFaculty)
    17601761    pnav = 1
     1762    doclink = DOCLINK + '/academics.html#faculties'
    17611763
    17621764    @action(_('Add faculty'), style='primary')
     
    18111813    tabthreeactions1 = [_('Remove selected local roles')]
    18121814    tabthreeactions2 = [_('Add local role')]
     1815    doclink = DOCLINK + '/academics.html#faculties'
    18131816
    18141817    form_fields = grok.AutoFields(IFaculty).omit('code')
     
    19071910    form_fields = grok.AutoFields(IDepartment)
    19081911    pnav = 1
     1912    doclink = DOCLINK + '/academics.html#departments'
    19091913
    19101914    @action(_('Add department'), style='primary')
     
    19761980    tabfouractions1 = [_('Remove selected local roles')]
    19771981    tabfouractions2 = [_('Add local role')]
     1982    doclink = DOCLINK + '/academics.html#departments'
    19781983
    19791984    form_fields = grok.AutoFields(IDepartment).omit('code')
     
    20492054    form_fields = grok.AutoFields(ICourse)
    20502055    pnav = 1
     2056    doclink = DOCLINK + '/academics.html#courses'
    20512057
    20522058    @action(_('Add course'))
     
    20902096    form_fields = grok.AutoFields(ICertificate)
    20912097    pnav = 1
     2098    doclink = DOCLINK + '/academics.html#certificates'
    20922099
    20932100    @action(_('Add certificate'))
     
    21512158    tabtwoactions1 = [_('Remove selected local roles')]
    21522159    tabtwoactions2 = [_('Add local role')]
     2160    doclink = DOCLINK + '/academics.html#courses'
    21532161
    21542162    form_fields = grok.AutoFields(ICourse).omit('code')
     
    22002208    pnav = 1
    22012209    label = _('Edit certificate')
     2210    doclink = DOCLINK + '/academics.html#certificates'
    22022211
    22032212    form_fields = grok.AutoFields(ICertificate).omit('code')
     
    22522261    pnav = 1
    22532262    label = _('Add certificate course')
     2263    doclink = DOCLINK + '/academics.html#certificate-courses'
    22542264
    22552265    @action(_('Add certificate course'))
     
    23052315    label = _('Edit certificate course')
    23062316    pnav = 1
     2317    doclink = DOCLINK + '/academics.html#certificate-courses'
    23072318
    23082319    @action(_('Save and return'), style='primary')
  • main/waeup.kofa/trunk/src/waeup/kofa/students/browser.py

    r12901 r12910  
    31193119    label = _('Student Data Exports')
    31203120    pnav = 1
     3121    doclink = DOCLINK + '/datacenter/export.html#student-data-exporters'
    31213122
    31223123    def update(self, CREATE=None, DISCARD=None, job_id=None):
Note: See TracChangeset for help on using the changeset viewer.