From 66daa072678fef025d86f39d8b2d09de896629a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 10 Aug 2018 11:25:21 +0200 Subject: [PATCH] general: generalise links-list css class on relevant cells (#25631) --- .../apps/notifications/templates/combo/notificationscell.html | 2 ++ combo/apps/wcs/templates/combo/wcs/current_drafts.html | 3 ++- combo/apps/wcs/templates/combo/wcs/current_forms.html | 2 +- combo/apps/wcs/templates/combo/wcs/user_all_forms.html | 2 +- combo/apps/wcs/templates/combo/wcs/user_done_forms.html | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/combo/apps/notifications/templates/combo/notificationscell.html b/combo/apps/notifications/templates/combo/notificationscell.html index de13da13..731a328e 100644 --- a/combo/apps/notifications/templates/combo/notificationscell.html +++ b/combo/apps/notifications/templates/combo/notificationscell.html @@ -2,6 +2,7 @@ {% block cell-content %}

{% trans "Notifications" %}

{% if notifications %} + {% else %}

{% trans 'No notifications.' %}

{% endif %} diff --git a/combo/apps/wcs/templates/combo/wcs/current_drafts.html b/combo/apps/wcs/templates/combo/wcs/current_drafts.html index e7b293eb..09cfc87b 100644 --- a/combo/apps/wcs/templates/combo/wcs/current_drafts.html +++ b/combo/apps/wcs/templates/combo/wcs/current_drafts.html @@ -2,7 +2,7 @@ {% block cell-content %}

{% trans 'Current Drafts' %}

{% for slug, forms in current_drafts.items %} -
+ {% endfor %} +
{% endblock %} diff --git a/combo/apps/wcs/templates/combo/wcs/current_forms.html b/combo/apps/wcs/templates/combo/wcs/current_forms.html index c0a8679e..e4adb0cd 100644 --- a/combo/apps/wcs/templates/combo/wcs/current_forms.html +++ b/combo/apps/wcs/templates/combo/wcs/current_forms.html @@ -2,7 +2,7 @@ {% block cell-content %}

{% trans 'Current Forms' %}

{% for slug, forms in current_forms.items %} -
+ {% endfor %} diff --git a/combo/apps/wcs/templates/combo/wcs/user_all_forms.html b/combo/apps/wcs/templates/combo/wcs/user_all_forms.html index 6e0a7156..36c2faaf 100644 --- a/combo/apps/wcs/templates/combo/wcs/user_all_forms.html +++ b/combo/apps/wcs/templates/combo/wcs/user_all_forms.html @@ -2,7 +2,7 @@ {% block cell-content %}

{% trans 'All Forms' %}

{% for slug, forms in user_forms.items %} -
+ {% endfor %} diff --git a/combo/apps/wcs/templates/combo/wcs/user_done_forms.html b/combo/apps/wcs/templates/combo/wcs/user_done_forms.html index 0a9912ce..2455a6fe 100644 --- a/combo/apps/wcs/templates/combo/wcs/user_done_forms.html +++ b/combo/apps/wcs/templates/combo/wcs/user_done_forms.html @@ -2,7 +2,7 @@ {% block cell-content %}

{% trans 'Done Forms' %}

{% for slug, forms in user_forms.items %} -
+ {% endfor %}