Projet

Général

Profil

0001-wcs-include-description-in-form-cell-32356.patch

Frédéric Péters, 16 avril 2019 07:50

Télécharger (963 octets)

Voir les différences:

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(-)
combo/apps/wcs/templates/combo/wcs/form.html
1 1
{% block cell-content %}
2
<div class="wcs-form-{{slug}}"><a href="{{ url }}tryauth">{{ title }}</a></div>
2
<div class="wcs-form-{{slug}}"><a href="{{ url }}tryauth">{{ title }}</a>
3
{% if cell.cached_json.description %}
4
<div class="description">
5
{{ cell.cached_json.description|safe }}
6
</div>
7
{% endif %}
8
</div>
3 9
{% endblock %}
4
-