{% extends 'base.html' %} {% block title %}art{% endblock %} {% block content %} {% for tag in tags %}

{{ tag.name }}

{% if tag.description %}

{{ tag.description }}

{% endif %}
{% for row in tag.images|batch(3) %}
{% for image in row %} {#{% if loop.index0 % 3 == 0 %}
{% endif %}#}
{{ image.file_name  }}

{{ image.description }}

{#{% if loop.index % 3 == 0 or loop.last %}
{% endif %}#} {% endfor %}
{% endfor %} {% endfor %} {% endblock %}