Skip to content
Snippets Groups Projects

Add view for ToS

Merged Tom Teichler requested to merge tos into master
Files
5
{% 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 %}
{% for term in event.terms.all %}
{{ term.term | safe }}
{% endfor %}
{% endblock %}
Loading