Files
Phraseanet/templates/web/prod/TOU.html.twig
2012-12-17 15:30:05 +01:00

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 %}