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
Merge requests
!48
Resolve "Include header box from SchoolApps"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Include header box from SchoolApps"
61-include-header-box-from-schoolapps
into
master
Overview
0
Commits
3
Pipelines
0
Changes
4
Merged
Jonathan Weth
requested to merge
61-include-header-box-from-schoolapps
into
master
4 years ago
Overview
0
Commits
3
Pipelines
0
Changes
4
Expand
Closes
#61 (closed)
Edited
4 years ago
by
Jonathan Weth
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
29a9c52b
3 commits,
4 years ago
4 files
+
44
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
aleksis/apps/chronos/templates/chronos/partials/headerbox.html
+
25
−
1
Options
{% load i18n %}
{% if affected_teachers
and
affected_groups %}
{% if affected_teachers
or
affected_groups
or absent_teachers or absent_groups
%}
<div
class=
"{% if not print %}card{% endif %}"
>
<div
class=
"{% if not print %}card-content{% endif %}"
>
{% if absent_teachers %}
<div
class=
"row no-margin"
>
<div
class=
"col s12 m3"
>
<strong
class=
"truncate"
>
{% trans "Absent teachers" %}
</strong>
</div>
<div
class=
"col s12 m9 black-text-a"
>
{% include "chronos/partials/teachers.html" with teachers=absent_teachers %}
</div>
</div>
{% endif %}
{% if absent_groups %}
<div
class=
"row no-margin"
>
<div
class=
"col s12 m3"
>
<strong
class=
"truncate"
>
{% trans "Absent groups" %}
</strong>
</div>
<div
class=
"col s12 m9 black-text-a"
>
{% include "chronos/partials/groups.html" with groups=absent_groups %}
</div>
</div>
{% endif %}
{% if affected_teachers %}
<div
class=
"row no-margin"
>
<div
class=
"col s12 m3"
>
Loading