From b7a78cea12efdd36bdc0038a6152f0cb2e22441f Mon Sep 17 00:00:00 2001 From: Alexandre Iooss Date: Sun, 30 Jan 2022 14:53:19 +0100 Subject: [PATCH] Simplify photo display --- .../templates/photologue/photo_detail.html | 22 ++++--------------- 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/photologue/templates/photologue/photo_detail.html b/photologue/templates/photologue/photo_detail.html index 24ec51b..ef1082b 100644 --- a/photologue/templates/photologue/photo_detail.html +++ b/photologue/templates/photologue/photo_detail.html @@ -13,22 +13,8 @@ SPDX-License-Identifier: GPL-3.0-or-later

{% trans "Published" %} {{ object.date_added }}

-
-
- {% if object.caption %}

{{ object.caption|safe }}

{% endif %} - - {{ object.title }} - -
-
- {% if object.public_galleries %} -

{% trans "This photo is found in the following galleries" %}:

- - {% endif %} -
-
+{% if object.caption %}

{{ object.caption|safe }}

{% endif %} + + {{ object.title }} + {% endblock %} \ No newline at end of file