Skip to content
Snippets Groups Projects
Commit 5f0fe414 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Fix missing imports and duplicate Meta class.

parent d804aa9b
No related branches found
No related tags found
1 merge request!9WIP: Add way to edit substitution
from typing import Optional
from django.utils.translation import ugettext_lazy as _
import django_tables2 as tables
from django_tables2.utils import A
from .models import LessonPeriod
def _css_class_from_lesson_state(record: Optional[LessonPeriod] = None, table: Optional[LessonTable] = None) -> str:
if record.get_substitution(table._week):
......@@ -13,6 +17,7 @@ def _css_class_from_lesson_state(record: Optional[LessonPeriod] = None, table: O
class LessonsTable(tables.Table):
class Meta:
attrs = {'class': 'table table-striped table-bordered table-hover table-responsive-xl'}
row_attrs = {'class': _css_class_from_lesson_state}
period__period = tables.Column(accessor='period.period')
lesson__groups = tables.Column(accessor='lesson.group_names')
......@@ -23,6 +28,3 @@ class LessonsTable(tables.Table):
def __init__(self, week, *args, **kwargs):
self._week = week
super().__init__(*args, **kwargs)
class Meta:
row_attrs = {'class': _css_class_from_lesson_state}
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