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() %}
{% if photos %}
<div id="hierarchy_photos">
<h3>{{photos|length}} Photos</h3>
<div id="photo_list">
{% for photo in photos %}
{{photo_card.create_photo_card(photo, view=view)}}
{% endfor %}
</div>
<h3>{{photos|length}} Photos</h3>
<div id="photo_list">
{% for photo in photos %}
{{photo_card.create_photo_card(photo, view=view)}}
{% endfor %}
</div>
</div>
{% endif %}