Ignore:
Timestamp:
4 Oct 2019, 14:20:49 (5 years ago)
Author:
Henrik Bettermann
Message:

In AAUE only editable appear on the attendance sheet. Hopefully
this holds for other universities too.

File:
1 edited

Legend:

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

    r15629 r15642  
    37793779                        key=lambda value: str(value.student.certcode) +
    37803780                                          str(value.student.matric_number))
    3781         for ticket in ctlist:
     3781        # In AAUE only editable appear on the attendance sheet. Hopefully
     3782        # this holds for other universities too.
     3783        editable_tickets = [ticket for ticket in ctlist
     3784            if ticket.editable_by_lecturer]
     3785        for ticket in editable_tickets:
    37823786            name = textwrap.fill(ticket.student.display_fullname, 20)
    37833787            row = [sn,
Note: See TracChangeset for help on using the changeset viewer.