Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-App-Paweljong
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
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
Teckids
Projekt Hack-n-Fun
AlekSIS-App-Paweljong
Merge requests
!26
Add view for ToS
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add view for ToS
tos
into
master
Overview
0
Commits
4
Pipelines
5
Changes
5
Merged
Tom Teichler
requested to merge
tos
into
master
2 years ago
Overview
0
Commits
4
Pipelines
5
Changes
5
Expand
0
0
Merge request reports
Compare
master
version 4
5438272a
2 years ago
version 3
1c44ea01
2 years ago
version 2
3ecc418e
2 years ago
version 1
ec7c6075
2 years ago
master (base)
and
version 3
latest version
dff9f5cb
4 commits,
2 years ago
version 4
5438272a
3 commits,
2 years ago
version 3
1c44ea01
2 commits,
2 years ago
version 2
3ecc418e
2 commits,
2 years ago
version 1
ec7c6075
1 commit,
2 years ago
5 files
+
42
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
aleksis/apps/paweljong/templates/paweljong/event/terms.html
0 → 100644
+
22
−
0
Options
{% extends "core/base.html" %}
{% load material_form i18n any_js %}
{% block page_title %}{% blocktrans %}Terms and conditions{% endblocktrans %}{% endblock %}
{% block browser_title %}{% blocktrans %}Terms and conditions{% endblocktrans %}{% endblock %}
{% block content %}
<div
class=
"row"
>
{% for term in event.terms.all %}
<div
class=
"col s12"
>
<div
class=
"card"
>
<div
class=
"card-content"
>
<span
class=
"card-title"
>
{{ term.title }}
</span>
{{ term.term | safe}}
</div>
</div>
</div>
{% endfor %}
</div>
{% endblock %}
Loading