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 %}