blob: 82026895c719feb1488638d98b9bfa08c052fa85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<tr>
<th>
{{ list.name }}
{% if list.moderated %}
<span class="label label-warning pull-right" title="This list is moderated"><span class="fa fa-fw fa-lock"></span></span>
{% endif %}
</th>
<td>
{{ list.description }}
{% if list.moderators %}
<br><small>Moderators: {{ list.moderators | join:', '}}</small>
{% endif %}
</td>
<td class="ml-actions hidden-xs">
{% if list.private != true %}
<div class="btn-group btn-group-xs" role="group" aria-label="Mailing list actions for {{ list.name }}@lists.gentoo.org">
<a href="mailto:{{ list.name }}@lists.gentoo.org" title="Post to this list" class="btn btn-default"><span class="fa fa-fw fa-send"></span></a>
<a href="mailto:{{ list.name }}%2Bsubscribe@lists.gentoo.org" title="Subscribe to this list" class="btn btn-default"><span class="fa fa-fw fa-plus-square"></span></a>
<a href="https://archives.gentoo.org/{{ list.name }}/" title="Archives of this list" class="btn btn-default"><span class="fa fa-fw fa-archive"></span></a>
</div>
{% endif %}
</td>
</tr>
|