diff options
Diffstat (limited to 'hyperkitty/templates')
-rw-r--r-- | hyperkitty/templates/index.html | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/hyperkitty/templates/index.html b/hyperkitty/templates/index.html index 909675a..dee58a5 100644 --- a/hyperkitty/templates/index.html +++ b/hyperkitty/templates/index.html @@ -14,9 +14,14 @@ <ul class="lists unstyled"> {% for mlist in lists %} <li> - <a href="{% url list_overview mlist_fqdn=mlist %}"> - <p class="list-name">{{ mlist }}</p> - <p>overview{% if mlist.display_name %} of {{ mlist.display_name }}{% endif %}</p> + <a href="{% url list_overview mlist_fqdn=mlist.name %}"> + <p class="list-name">{{ mlist.name }}</p> + {% if mlist.display_name %} + <p>{{ mlist.display_name }}</p> + {% endif %} + {% if mlist.description %} + <p>{{ mlist.description }}</p> + {% endif %} </a> </li> {% endfor %} |