Don't show list table header if there is no list yet.
1 parent d1e30f0 commit 8a7dd7a7b33f798d09a41d729304075b3f1033a1
@Florian Fuchs Florian Fuchs authored on 14 Apr 2015
Showing 1 changed file
View
56
src/postorius/templates/postorius/lists/index.html
{% endif %}
</p>
{% endif %}
 
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>{% trans 'List name' %}</th>
<th>{% trans 'List address' %}</th>
<th>{% trans 'Description' %}</th>
</tr>
</thead>
<tbody>
{% for list in lists %}
<tr>
<td>
<a href="{% url 'list_summary' list_id=list.list_id %}">{{ list.display_name }}</a>
</td>
<td>{{ list.fqdn_listname }}</td>
<td>{{ list.settings.description }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% if lists|length > 0 %}
 
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>{% trans 'List name' %}</th>
<th>{% trans 'List address' %}</th>
<th>{% trans 'Description' %}</th>
</tr>
</thead>
<tbody>
{% for list in lists %}
<tr>
<td>
<a href="{% url 'list_summary' list_id=list.list_id %}">{{ list.display_name }}</a>
</td>
<td>{{ list.fqdn_listname }}</td>
<td>{{ list.settings.description }}</td>
</tr>
{% endfor %}
</tbody>
</table>
 
{% else %}
 
<p>There are currently no mailing lists.</p>
 
{% endif %}
{% endblock main %}