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

Move function to right place.

parent e8990873
No related branches found
No related tags found
1 merge request!9WIP: Add way to edit substitution
...@@ -7,13 +7,6 @@ from django_tables2.utils import A ...@@ -7,13 +7,6 @@ from django_tables2.utils import A
from .models import LessonPeriod 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):
return 'table-warning'
else:
return ''
class LessonsTable(tables.Table): class LessonsTable(tables.Table):
class Meta: class Meta:
attrs = {'class': 'table table-striped table-bordered table-hover table-responsive-xl'} attrs = {'class': 'table table-striped table-bordered table-hover table-responsive-xl'}
...@@ -29,3 +22,10 @@ class LessonsTable(tables.Table): ...@@ -29,3 +22,10 @@ class LessonsTable(tables.Table):
def __init__(self, week, *args, **kwargs): def __init__(self, week, *args, **kwargs):
self._week = week self._week = week
super().__init__(*args, **kwargs) super().__init__(*args, **kwargs)
def _css_class_from_lesson_state(record: Optional[LessonPeriod] = None, table: Optional[LessonTable] = None) -> str:
if record.get_substitution(table._week):
return 'table-warning'
else:
return ''
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