Ignore:
Timestamp:
14 Jun 2015, 11:33:07 (9 years ago)
Author:
Henrik Bettermann
Message:

More docs.

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

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/permissions.py

    r12900 r13046  
    355355    """The local Lecturer role can be assigned at course level.
    356356    The role allows to view all data and to list or export all student
    357     ata within course the local role is assigned. Lecturers can't access
     357    data within the course the local role is assigned. Lecturers can't access
    358358    student data directly but they can edit the scores in course tickets.
    359359    """
  • main/waeup.kofa/trunk/src/waeup/kofa/students/studylevel.py

    r13031 r13046  
    309309    @property
    310310    def removable_by_student(self):
     311        """True if student is allowed to remove the ticket.
     312        """
    311313        return not self.mandatory
    312314
    313315    @property
    314316    def editable_by_lecturer(self):
     317        """True if lecturer is allowed to edit the ticket.
     318        """
    315319        try:
    316320            cas = grok.getSite()[
  • main/waeup.kofa/trunk/src/waeup/kofa/students/tests/test_browser.py

    r13031 r13046  
    16231623
    16241624    def test_handle_courses_by_ca(self):
    1625         # Create course adviser
    16261625        self.app['users'].addUser('mrsadvise', 'mrsadvisesecret')
    16271626        self.app['users']['mrsadvise'].email = 'mradvise@foo.ng'
     
    17511750
    17521751    def test_handle_courses_by_lecturer(self):
    1753         # Create course lecturer
    17541752        self.app['users'].addUser('mrslecturer', 'mrslecturersecret')
    17551753        self.app['users']['mrslecturer'].email = 'mrslecturer@foo.ng'
Note: See TracChangeset for help on using the changeset viewer.