Remove unnecessary extra indent.

This commit is contained in:
voussoir 2018-11-17 17:36:47 -08:00
parent 5dcb86eed5
commit e562658d42

View file

@ -193,12 +193,12 @@ ALBUM_ID = undefined;
{% set photos = album.get_photos() %} {% set photos = album.get_photos() %}
{% if photos %} {% if photos %}
<div id="hierarchy_photos"> <div id="hierarchy_photos">
<h3>{{photos|length}} Photos</h3> <h3>{{photos|length}} Photos</h3>
<div id="photo_list"> <div id="photo_list">
{% for photo in photos %} {% for photo in photos %}
{{photo_card.create_photo_card(photo, view=view)}} {{photo_card.create_photo_card(photo, view=view)}}
{% endfor %} {% endfor %}
</div> </div>
</div> </div>
{% endif %} {% endif %}