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
!41
Show announcements in timetable views
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Show announcements in timetable views
feature/show-announcements-in-timetable-views
into
master
Overview
14
Commits
9
Pipelines
0
Changes
11
All threads resolved!
Hide all comments
Merged
Jonathan Weth
requested to merge
feature/show-announcements-in-timetable-views
into
master
5 years ago
Overview
14
Commits
9
Pipelines
0
Changes
11
All threads resolved!
Hide all comments
Expand
Blocked by
AlekSIS!184 (merged)
Closes
#63 (closed)
0
0
Merge request reports
Compare
master
version 2
1ed1dd51
5 years ago
version 1
f5aaaf03
5 years ago
master (base)
and
latest version
latest version
edfd5296
9 commits,
5 years ago
version 2
1ed1dd51
8 commits,
5 years ago
version 1
f5aaaf03
6 commits,
5 years ago
11 files
+
32
−
112
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
aleksis/apps/chronos/templates/chronos/partials/hints/substitutions.html deleted
100644 → 0
+
0
−
27
Options
{% load martortags %}
{% if hints %}
<ul
class=
"collapsible"
>
<li>
<div
class=
"collapsible-header "
style=
"font-size: 16px;"
>
<div
class=
"col s12"
>
<i
class=
"material-icons left"
>
announcement
</i>
Es gibt {{ hints|length }}
Hinweis{{ hints|pluralize:"e" }} für diesen Tag.
<i
class=
"material-icons right collapsible-trigger"
></i>
</div>
</div>
<div
class=
"collapsible-body"
>
{% for hint in hints %}
<div>
<strong>
{{ hint.classes_formatted }}{% if hint.teachers and hint.classes.all %},{% endif %}
</strong>
{% if hint.teachers %}
<span
class=
"badge new green no-float no-margin"
>
Lehrkräfte
</span>
{% endif %}:
{{ hint.text|safe_markdown }}
</div>
{% endfor %}
</div>
</li>
</ul>
{% endif %}
Loading