{% extends 'base.html' %} {% load i18n %} {% block content %} {% load static %} {% load photo_tags %} {% block body %} {% if images %} {% for image in images %} {% with image|split:'.' as strs %} {% with strs|length as str_arr_len %} {% with str_arr_len|add:'-1' as ext_idx %} {% if strs|get_by_index:ext_idx == 'jpg' %} {{ image }} {% endif %} {% endwith %} {% endwith %} {% endwith %} {% if forloop.counter|divisibleby:4 %}
{% endif %} {% endfor %} {% else %}

No image available.

{% endif %} {% endblock body %} {% block extra_js %} {% endblock extra_js %} {% endblock content %}