diff options
Diffstat (limited to 'hyperkitty/templates')
-rw-r--r-- | hyperkitty/templates/index.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/hyperkitty/templates/index.html b/hyperkitty/templates/index.html index 2efe320..85d051e 100644 --- a/hyperkitty/templates/index.html +++ b/hyperkitty/templates/index.html @@ -17,7 +17,13 @@ {% for mlist in all_lists %} <div class="span3"> <a href="{% url 'list_overview' mlist_fqdn=mlist.name %}" class="mailinglist"> - <p class="list-name">{{ mlist.name }}</p> + <p class="list-name"> + {% if mlist.display_name %} + {{ mlist.display_name }} + {% else %} + {{ mlist.name }} + {% endif %} + </p> <p class="list-address">{{ mlist.name }}</p> <p class="list-description"></p> <img alt="Loading..." class="ajaxloader" src="{{ STATIC_URL }}img/ajax-loader.gif" /> |