aboutsummaryrefslogtreecommitdiff
blob: 3f2e9fac936861c24a050a5a28a73b6c311db02e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<tr>
  <th id="{{ list.name }}">
    {{ 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">
      {% if include.archived != true %}
      <a href="mailto:{{ list.name }}@lists.gentoo.org" title="Post messages 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>
      {% endif %}
      <a href="https://archives.gentoo.org/{{ list.name }}/" title="View archives of this list." class="btn btn-default"><span class="fa fa-fw fa-archive"></span></a>
    </div>
    {% endif %}
  </td>
</tr>