zulip/templates/zerver/terms.html
acrefoot e568dbc76f Add TERMS_OF_SERVICE setting.
This new setting allows the server administrator to add a custom
Terms of Service page by supplying the path to a markdown file.

Also adds a test.
2016-07-29 20:47:31 -07:00

17 lines
287 B
HTML

{% extends "zerver/portico.html" %}
{# Terms of service. #}
{% block portico_content %}
<div class="app terms-page">
<div class="app-main terms-page-container">
{% if terms_of_service %}
{{ terms_of_service|render_markdown_path }}
{% endif %}
</div>
</div>
{% endblock %}