{% extends "base.html" %}
{% load i18n %}
{% load svtopmenu %}
{% block title %}
{{group.svgroupinfo.get_full_name_display}} - {{title}}
{% endblock %}
{% block icon %}mail{% endblock %}
{% block topmenu %}
{% svtopmenu "group" %}
{% endblock %}
{% block content %}
{% if object_list %}
{% for object in object_list %}
{{object.list_name}}
{{object.description}}
{% if object.is_public %}
{% blocktrans with ''|safe as begin_link and '.' as end_link and object.list_name as list_name %}To see the collection of prior posting to the list, visit the {{begin_link}}{{list_name}} archives{{end_link}}{% endblocktrans %}
{% else %}
{% blocktrans with ''|safe as begin_link and '' as end_link and object.list_name as list_name %}To see the collection of prior posting to the list, visit the {{begin_link}}{{list_name}} archives{{end_link}} (authorization required).{% endblocktrans %}
{% endif %}
{% blocktrans with object.get_address|urlize as list_address %}To post a message to all the list members, write to {{list_address}}{% endblocktrans %}
{% blocktrans with ''|safe as begin_link and '.' as end_link and object.list_name as list_name %}You can (un)subscribe to the list by following instructions on the {{begin_link}}list information page{{end_link}}{% endblocktrans %}
{% blocktrans with ''|safe as begin_link and '' as end_link and object.list_name as list_name %}Project administrators can use the {{begin_link}}administrative interface{{end_link}} to manage the list.{% endblocktrans %}
{% trans "Project administrators can add mailing lists using the admin interface." %}
{% endif %} {% endblock %} {% comment %} Local Variables: ** mode: django-html ** tab-width: 4 ** indent-tabs-mode: nil ** End: ** {% endcomment %}