{% extends '../global.html' %} {% load i18n %} {% load responsive_images %} {% block content %}
  • {% for gallery in galleries %} {% if gallery.images.all|length <= 0 %} {% translate 'no images' %} {% endif %} {% if gallery.images.all|length == 1 %} {% for image in gallery.images.all %} {% endfor %} {% endif %} {% if gallery.images.all|length == 2 %} {% for image in gallery.images.all %} {% endfor %} {% endif %} {% if gallery.images.all|length == 3 %} {% for image in gallery.images.all %} {% endfor %} {% endif %} {% if gallery.images.all|length >= 4 %} {% for image in gallery.images.all|slice:":4" %} {% endfor %} {% endif %} {% if gallery.title %}

    {{gallery.title}}

    {% endif %}
    {% endfor %}
  • {% endblock content %}