2016-05-11 19:01:53 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
|
|
|
|
|
|
|
{# Terms of service. #}
|
|
|
|
|
|
|
|
{% block portico_content %}
|
|
|
|
|
2017-05-03 19:48:52 +02:00
|
|
|
<div class="app terms-page inline-block">
|
2017-02-24 16:42:13 +01:00
|
|
|
<div class="app-main terms-page-container">
|
|
|
|
{% if terms_of_service %}
|
2017-04-10 12:55:43 +02:00
|
|
|
{{ terms_of_service|render_markdown_path }}
|
|
|
|
{% else %}
|
|
|
|
{% trans %}
|
|
|
|
This installation of Zulip does not have a configured terms of service.
|
|
|
|
Contact this <a href="mailto:{{ support_email }}">server's administrator</a>
|
|
|
|
if you have any questions.
|
|
|
|
{% endtrans %}
|
2017-02-24 16:42:13 +01:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2016-05-11 19:01:53 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|