mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-14 13:33:14 +00:00
12 lines
395 B
Twig
12 lines
395 B
Twig
{% extends app.request.isXmlHttpRequest() ? "prod/TOU_ajax.html.twig" : "prod/TOU_base.html.twig" %}
|
|
|
|
{% block tou %}
|
|
{% for name, TOU in TOUs %}
|
|
<h1 style="text-align:center;font-weight:bold;font-size:16px;">{{ name }}</h1>
|
|
{{ TOU | raw }}
|
|
{% if loop.last == false %}
|
|
<hr/>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endblock %}
|