mark private lists for admins in list index
1 parent 8a7dd7a commit 30a4c4bd1607645c5498eeb4181eb6372f2e40da
@Florian Fuchs Florian Fuchs authored on 15 Apr 2015
Showing 1 changed file
View
9
src/postorius/templates/postorius/lists/index.html
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>{% trans 'List name' %}</th>
<th>{% trans 'List address' %}</th>
<th>{% trans 'Post 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>
<a href="{% url 'list_summary' list_id=list.list_id %}">{{ list.display_name }}</a>{% if not list.settings.advertised %} (private*){% endif %}
</td>
<td>{{ list.fqdn_listname }}</td>
<td>{{ list.settings.description }}</td>
</tr>
{% endfor %}
</tbody>
</table>
 
{% if user.is_superuser %}
<small>* Private lists can only be seen by admins.</small>
{% endif %}
 
{% else %}
 
<p>There are currently no mailing lists.</p>
 
{% endif %}
 
{% endblock main %}