diff --git a/fet2020/templates/gallery/album.html b/fet2020/templates/gallery/album.html index 5caadcbf..5d3191c5 100644 --- a/fet2020/templates/gallery/album.html +++ b/fet2020/templates/gallery/album.html @@ -25,7 +25,11 @@ {% endif %} - {{ album.title }} + {% if album.status == album.DRAFT %} + {{ album.title }} + {% else %} + {{ album.title }} + {% endif %} {% if album.photographer %} {{ album.photographer }} {% endif %} @@ -33,9 +37,6 @@ {{ album.event_date }} {% endif %} Gußhaus 27 - 1040, Wien - {% if album.status == album.DRAFT %} - DRAFT - {% endif %} {% if album.description %} {{ album.description|safe }}
{{ album.description|safe }}