Remove unnecessary extra indent.
This commit is contained in:
parent
5dcb86eed5
commit
e562658d42
1 changed files with 6 additions and 6 deletions
|
@ -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 %}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue