2017-04-10 12:55:43 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
|
|
|
|
|
|
|
{# Privacy policy. #}
|
|
|
|
|
|
|
|
{% block portico_content %}
|
|
|
|
|
2017-08-28 20:39:14 +02:00
|
|
|
<div class="app terms-page flex">
|
|
|
|
<div class="app-main terms-page-container white-box">
|
2017-04-10 12:55:43 +02:00
|
|
|
|
|
|
|
{% if privacy_policy %}
|
2017-07-31 22:36:06 +02:00
|
|
|
{{ render_markdown_path(privacy_policy) }}
|
2017-04-10 12:55:43 +02:00
|
|
|
{% else %}
|
|
|
|
{% trans %}
|
|
|
|
This installation of Zulip does not have a configured privacy policy.
|
|
|
|
Contact this <a href="mailto:{{ support_email }}">server's administrator</a>
|
|
|
|
if you have any questions.
|
|
|
|
{% endtrans %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|