Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-App-Alsijil
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-Alsijil
Commits
684c19f0
Verified
Commit
684c19f0
authored
4 years ago
by
Tom Teichler
Browse files
Options
Downloads
Patches
Plain Diff
Remove non-existing decorators
parent
7d31b655
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!43
Resolve "Make Alsijil work with current core"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
aleksis/apps/alsijil/views.py
+7
-13
7 additions, 13 deletions
aleksis/apps/alsijil/views.py
with
7 additions
and
13 deletions
aleksis/apps/alsijil/views.py
+
7
−
13
View file @
684c19f0
from
datetime
import
date
,
datetime
,
timedelta
from
typing
import
Optional
from
django.contrib.auth.decorators
import
login_required
from
django.core.exceptions
import
PermissionDenied
from
django.db.models
import
Count
,
Exists
,
OuterRef
,
Q
,
Sum
from
django.http
import
Http404
,
HttpRequest
,
HttpResponse
...
...
@@ -13,8 +12,7 @@ from calendarweek import CalendarWeek
from
django_tables2
import
RequestConfig
from
aleksis.apps.chronos.models
import
LessonPeriod
from
aleksis.core.decorators
import
admin_required
from
aleksis.core.models
import
Group
,
Person
,
School
from
aleksis.core.models
import
Group
,
Person
from
aleksis.core.util
import
messages
from
.forms
import
(
...
...
@@ -28,7 +26,6 @@ from .models import LessonDocumentation, PersonalNoteFilter
from
.tables
import
PersonalNoteFilterTable
@login_required
def
lesson
(
request
:
HttpRequest
,
year
:
Optional
[
int
]
=
None
,
...
...
@@ -109,7 +106,6 @@ def lesson(
return
render
(
request
,
"
alsijil/lesson.html
"
,
context
)
@login_required
def
week_view
(
request
:
HttpRequest
,
year
:
Optional
[
int
]
=
None
,
week
:
Optional
[
int
]
=
None
)
->
HttpResponse
:
...
...
@@ -211,7 +207,6 @@ def week_view(
return
render
(
request
,
"
alsijil/week_view.html
"
,
context
)
@login_required
def
full_register_group
(
request
:
HttpRequest
,
id_
:
int
)
->
HttpResponse
:
context
=
{}
...
...
@@ -224,10 +219,12 @@ def full_register_group(request: HttpRequest, id_: int) -> HttpResponse:
.
prefetch_related
(
"
documentations
"
,
"
personal_notes
"
)
)
weeks
=
CalendarWeek
.
weeks_within
(
School
.
objects
.
first
().
current_term
.
date_start
,
School
.
objects
.
first
().
current_term
.
date_end
,
)
#FIXME SchoolTerm missing in core
# weeks = CalendarWeek.weeks_within(
# SchoolTerm.objects.first().current_term.date_start,
# SchoolTerm.objects.first().current_term.date_end,
# )
periods_by_day
=
{}
for
lesson_period
in
lesson_periods
:
for
week
in
weeks
:
...
...
@@ -274,12 +271,10 @@ def full_register_group(request: HttpRequest, id_: int) -> HttpResponse:
context
[
"
weeks
"
]
=
weeks
context
[
"
periods_by_day
"
]
=
periods_by_day
context
[
"
today
"
]
=
date
.
today
()
context
[
"
school
"
]
=
School
.
objects
.
first
()
return
render
(
request
,
"
alsijil/print/full_register.html
"
,
context
)
@admin_required
def
register_absence
(
request
:
HttpRequest
)
->
HttpResponse
:
context
=
{}
...
...
@@ -349,7 +344,6 @@ def edit_personal_note_filter(request: HttpRequest, id: Optional["int"] = None)
return
render
(
request
,
"
alsijil/manage_personal_note_filter.html
"
,
context
)
@admin_required
def
delete_personal_note_filter
(
request
:
HttpRequest
,
id_
:
int
)
->
HttpResponse
:
context
=
{}
...
...
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