Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-App-Chronos
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-App-Chronos
Commits
7746a954
Commit
7746a954
authored
5 years ago
by
Nik | Klampfradler
Browse files
Options
Downloads
Patches
Plain Diff
Resolve circular dependency of code in tables.py by using annotations from Python 4.0.
parent
e6757886
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!9
WIP: Add way to edit substitution
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
biscuit/apps/chronos/tables.py
+9
-7
9 additions, 7 deletions
biscuit/apps/chronos/tables.py
with
9 additions
and
7 deletions
biscuit/apps/chronos/tables.py
+
9
−
7
View file @
7746a954
from
__future__
import
annotations
from
typing
import
Optional
from
django.utils.translation
import
ugettext_lazy
as
_
...
...
@@ -7,6 +9,13 @@ from django_tables2.utils import A
from
.models
import
LessonPeriod
def
_css_class_from_lesson_state
(
record
:
Optional
[
LessonPeriod
]
=
None
,
table
:
Optional
[
LessonsTable
]
=
None
)
->
str
:
if
record
.
get_substitution
(
table
.
_week
):
return
'
table-warning
'
else
:
return
''
class
LessonsTable
(
tables
.
Table
):
class
Meta
:
attrs
=
{
'
class
'
:
'
table table-striped table-bordered table-hover table-responsive-xl
'
}
...
...
@@ -22,10 +31,3 @@ class LessonsTable(tables.Table):
def
__init__
(
self
,
week
,
*
args
,
**
kwargs
):
self
.
_week
=
week
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
''
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment