From 95f4d798055f34eda1817def5b4cb8f793c10564 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Sat, 13 May 2017 15:25:31 -0700 Subject: [PATCH] Move album dl link to bottom. Just feels better. --- .../etiquette_flask/templates/album.html | 29 ++++++++++--------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/frontends/etiquette_flask/templates/album.html b/frontends/etiquette_flask/templates/album.html index 057e7b4..31365de 100644 --- a/frontends/etiquette_flask/templates/album.html +++ b/frontends/etiquette_flask/templates/album.html @@ -86,19 +86,6 @@ p {% set photos = album.photos() %} {% if photos or sub_albums %} - - Download: - {% if photos %} - - These files ({{album.sum_bytes(recurse=False, string=True)}}) - - {% endif %} - {% if sub_albums %} - - Include children ({{album.sum_bytes(recurse=True, string=True)}}) - - {% endif %} - {% endif %} {% if photos %} @@ -114,6 +101,22 @@ p {% endfor %} {% endif %} +

+ {% if photos or sub_albums %} + Download: + {% if photos %} + + These files ({{album.sum_bytes(recurse=False, string=True)}}) + + {% endif %} + {% if photos and sub_albums %}—{% endif %} + {% if sub_albums %} + + Include children ({{album.sum_bytes(recurse=True, string=True)}}) + + {% endif %} + {% endif %} +