diff options
author | Alex Legler <alex@a3li.li> | 2016-02-05 21:42:07 +0100 |
---|---|---|
committer | Alex Legler <alex@a3li.li> | 2016-02-05 21:42:07 +0100 |
commit | 4edb1f27ab924d130d8d3b76fb612f9d32ae8909 (patch) | |
tree | 8e566517131e84eabe12795559157b010a75ac51 /_includes/partials | |
parent | downloads: Use new custom media name setup for AdminCDs (diff) | |
download | www-4edb1f27ab924d130d8d3b76fb612f9d32ae8909.tar.gz www-4edb1f27ab924d130d8d3b76fb612f9d32ae8909.tar.bz2 www-4edb1f27ab924d130d8d3b76fb612f9d32ae8909.zip |
mailinglists: No meta links for private lists (#572016)
Diffstat (limited to '_includes/partials')
-rw-r--r-- | _includes/partials/mailinglist.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/_includes/partials/mailinglist.html b/_includes/partials/mailinglist.html index 39a9af1..98959f1 100644 --- a/_includes/partials/mailinglist.html +++ b/_includes/partials/mailinglist.html @@ -12,10 +12,12 @@ {% 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 }}+subscribe@lists.gentoo.org" title="Subscribe to this list" class="btn btn-default"><span class="fa fa-fw fa-plus-square"></span></a> <a href="http://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>
\ No newline at end of file +</tr> |