From 979538e028a5446eae1f0c43d68eef74efa5a18c Mon Sep 17 00:00:00 2001 From: Elias Showk Date: Tue, 22 May 2018 18:13:46 +0200 Subject: [PATCH] list of forms: wrap the title into a span (#23977) --- combo/apps/wcs/templates/combo/wcs/current_drafts.html | 2 +- combo/apps/wcs/templates/combo/wcs/list_of_forms.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/combo/apps/wcs/templates/combo/wcs/current_drafts.html b/combo/apps/wcs/templates/combo/wcs/current_drafts.html index a584fe5..f7efa7d 100644 --- a/combo/apps/wcs/templates/combo/wcs/current_drafts.html +++ b/combo/apps/wcs/templates/combo/wcs/current_drafts.html @@ -7,7 +7,7 @@ {% for data in forms.data %} {% if data.url and data.title and not data.form_status_is_endpoint %}
  • {{ data.name }} + href="{{ data.url }}">{{ data.name }} {{data.datetime|strptime:"%Y-%m-%d %H:%M:%S"}} {% trans 'draft' %}
  • {% endif %} diff --git a/combo/apps/wcs/templates/combo/wcs/list_of_forms.html b/combo/apps/wcs/templates/combo/wcs/list_of_forms.html index 649f7bd..bc53666 100644 --- a/combo/apps/wcs/templates/combo/wcs/list_of_forms.html +++ b/combo/apps/wcs/templates/combo/wcs/list_of_forms.html @@ -3,7 +3,7 @@ {% for data in forms.data|dictsortreversed:"form_receipt_datetime" %} {% if data.url and data.title %}
  • {{ data.name }} + href="{{ data.url }}">{{data.name}} {{data.form_number}} {{data.status}}
  • {% endif %} -- 2.17.0