@@ -55,6 +55,9 @@
+
+ {% trans 'List Manager' %}
+ |
@@ -73,13 +76,25 @@
-
+
{% include 'prod/actions/Feedback/lists-all.html.twig' %}
+
+ {% trans 'Welcome to the ListManager !' %}
+ {% if lists|length == 0 %}
+
+ {% trans 'Start by creating one by using the "add" button on the left !' %}
+
+ {% else %}
+
+ {% trans 'Select a list on the left and edit it !' %}
+
+ {% endif %}
+
diff --git a/templates/web/prod/actions/Feedback/lists-all.html.twig b/templates/web/prod/actions/Feedback/lists-all.html.twig
index d98d6a038a..15a3d1693c 100644
--- a/templates/web/prod/actions/Feedback/lists-all.html.twig
+++ b/templates/web/prod/actions/Feedback/lists-all.html.twig
@@ -11,7 +11,7 @@
{% for list in lists %}
{% set length = ' ' ~ list.getEntries().count() ~ '' %}
-
+
"{{ list.getName() }}"
{% trans %}
|