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
1374312d
Commit
1374312d
authored
5 years ago
by
Jonathan Weth
Browse files
Options
Downloads
Patches
Plain Diff
Hint work
parent
231a46e1
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
biscuit/apps/chronos/hints.py
+18
-0
18 additions, 0 deletions
biscuit/apps/chronos/hints.py
biscuit/apps/chronos/views.py
+7
-0
7 additions, 0 deletions
biscuit/apps/chronos/views.py
with
25 additions
and
0 deletions
biscuit/apps/chronos/hints.py
0 → 100644
+
18
−
0
View file @
1374312d
from
timetable.models
import
Hint
def
get_all_hints_by_date
(
date
):
hints
=
filter_date
(
date
)
return
hints
def
get_all_hints_by_time_period
(
from_date
,
to_date
):
print
(
from_date
,
to_date
)
hints
=
Hint
.
objects
.
filter
(
from_date__gte
=
from_date
,
to_date__lte
=
to_date
).
order_by
(
"
from_date
"
,
"
classes
"
)
print
(
hints
)
return
hints
def
filter_date
(
date
):
hints
=
Hint
.
objects
.
filter
(
from_date__lte
=
date
,
to_date__gte
=
date
).
order_by
(
"
from_date
"
,
"
classes
"
)
return
hints
This diff is collapsed.
Click to expand it.
biscuit/apps/chronos/views.py
+
7
−
0
View file @
1374312d
...
...
@@ -11,6 +11,7 @@ from material import Fieldset, Row
from
schoolapps.settings
import
WEEK_DAYS
from
timetable.filters
import
HintFilter
from
timetable.forms
import
HintForm
from
timetable.hints
import
get_all_hints_by_date
,
get_all_hints_by_time_period
from
timetable.pdf
import
generate_class_tex
,
generate_pdf
from
untisconnect.plan
import
get_plan
,
TYPE_TEACHER
,
TYPE_CLASS
,
TYPE_ROOM
,
parse_lesson_times
...
...
@@ -110,6 +111,12 @@ def plan(request, plan_type, plan_id, regular="", year=timezone.datetime.now().y
plan
=
get_plan
(
_type
,
plan_id
,
smart
=
smart
,
monday_of_week
=
monday_of_week
)
# print(parse_lesson_times())
# Get hints
if
smart
:
friday
=
monday_of_week
+
datetime
.
timedelta
(
days
=
4
)
hints
=
list
(
get_all_hints_by_time_period
(
monday_of_week
,
friday
))
print
(
hints
)
context
=
{
"
smart
"
:
smart
,
"
type
"
:
_type
,
...
...
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