From 0082f407165f3ff1a59b7276e9af51c2a97eaabd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 16 Apr 2019 07:48:49 +0200 Subject: [PATCH] wcs: include description in form cell (#32356) --- combo/apps/wcs/templates/combo/wcs/form.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/combo/apps/wcs/templates/combo/wcs/form.html b/combo/apps/wcs/templates/combo/wcs/form.html index b290b39c..4434ed1a 100644 --- a/combo/apps/wcs/templates/combo/wcs/form.html +++ b/combo/apps/wcs/templates/combo/wcs/form.html @@ -1,3 +1,9 @@ {% block cell-content %} -
{{ title }}
+
{{ title }} +{% if cell.cached_json.description %} +
+{{ cell.cached_json.description|safe }} +
+{% endif %} +
{% endblock %}