Skip to content
Snippets Groups Projects

Resolve "Coursebook printing does not work when teaches don't have short name set"

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -118,7 +118,7 @@ class Documentation(CalendarEvent):
return self.course.groups.all()
def get_teachers_short_names(self) -> list[str]:
return [teacher.short_name or teacher.name for teacher in self.teachers.all()]
return [teacher.short_name or teacher.full_name for teacher in self.teachers.all()]
def __str__(self) -> str:
start_datetime = CalendarEvent.value_start_datetime(self)
Loading