Skip to content
Snippets Groups Projects
Verified Commit 8d6f34cc authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Fix table.

parent dbfc3b45
No related branches found
No related tags found
No related merge requests found
......@@ -6,8 +6,8 @@ class LessonsTable(tables.Table):
class Meta:
attrs = {'class': 'table table-striped table-bordered table-hover table-responsive-xl'}
period__period = tables.Column()
lesson__groups = tables.Column()
lesson_teachers = tables.Column()
lesson_subject = tables.Column()
room = tables.Column()
period__period = tables.Column(accessor='period.period')
lesson__groups = tables.Column(accessor='lesson.groups')
lesson__teachers = tables.Column(accessor='lesson.teachers')
lesson__subject = tables.Column(accessor='lesson.subject')
room = tables.Column(accessor='room')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment