fix: about

This commit is contained in:
2024-04-14 14:39:49 +02:00
parent 11d5e2a9ee
commit 4ee32607b6
2 changed files with 19 additions and 22 deletions

View File

@@ -5,18 +5,19 @@
{% block content %}
<h1>{% translate "Regeln" %}</h1>
{% include "fellchensammlung/lists/list-rules.html" %}
{% if privacy_statement %}
<h1>{{ privacy_statement.title }}</h1>
<p>{{ privacy.content | render_markdown }}</p>
<h1>{{ privacy_statement.title }}</h1>
{{ privacy.content | render_markdown }}
{% endif %}
{% if terms_of_service %}
<h1>{{ terms_of_service.title }}</h1>
<p>{{ terms_of_service.content | render_markdown }}</p>
<h1>{{ terms_of_service.title }}</h1>
{{ terms_of_service.content | render_markdown }}
{% endif %}
{% if imprint %}
<h1>{{ imprint.title }}</h1>
<p>{{ imprint.content | render_markdown }}</p>
<h1>{{ imprint.title }}</h1>
{{ imprint.content | render_markdown }}
{% endif %}
{% endblock %}