diff --git a/src/postorius/forms.py b/src/postorius/forms.py index 39f940e..eec1361 100644 --- a/src/postorius/forms.py +++ b/src/postorius/forms.py @@ -256,7 +256,7 @@ 'in the process.')) default_member_action = forms.ChoiceField( widget=forms.RadioSelect(), - label=_('Default action to take when a member posts to the list:'), + label=_('Default action to take when a member posts to the list'), error_messages={ 'required': _("Please choose a default member action.")}, required=True, @@ -275,7 +275,7 @@ default_nonmember_action = forms.ChoiceField( widget=forms.RadioSelect(), label=_('Default action to take when a non-member posts to the' - 'list:'), + 'list'), error_messages={ 'required': _("Please choose a default non-member action.")}, required=True, diff --git a/src/postorius/templates/postorius/lists/archival_options.html b/src/postorius/templates/postorius/lists/archival_options.html index 17deb37..5cf76dd 100644 --- a/src/postorius/templates/postorius/lists/archival_options.html +++ b/src/postorius/templates/postorius/lists/archival_options.html @@ -8,23 +8,21 @@ {% load nav_helpers %} {% block main %} - {% if message %}
{{ message }}
{% endif %} + {% list_nav 'list_archival_options' 'Archivers' %} -{% trans 'Are you sure you want to permanently delete this list?' %}
-{% trans 'All settings and membership data will be lost!' %}
- + +{% trans 'Are you sure you want to permanently delete this list?' %}
+{% trans 'All settings and membership data will be lost!' %}
+ +{% trans 'Are you sure you want to unsubscribe all members from' %} {{ list_id }}{% trans '?' %}
-+ {% blocktrans with listname=list.fqdn_listname %} + Are you sure you want to unsubscribe all members from {{ listname }}? + {% endblocktrans %} +
+ + + {% endblock main %} diff --git a/src/postorius/templates/postorius/lists/held_messages.html b/src/postorius/templates/postorius/lists/held_messages.html index fc91842..95e210d 100644 --- a/src/postorius/templates/postorius/lists/held_messages.html +++ b/src/postorius/templates/postorius/lists/held_messages.html @@ -7,11 +7,10 @@ {% endblock %} {% block main %} - {% list_nav 'list_held_messages' 'Held Messages' %} -{% trans 'There are currently no held messages.' %}
- {% endif %} -{% trans 'You are not the owner for this list' %}
{% else %} -{% trans 'Preference' %} | -{% trans 'Setting' %} | -
---|---|
- {{ field.label_tag }} - - {{ field.help_text }} - - |
- - {% if field|fieldtype == 'RadioSelect' %} - {% for choice in field %} - - {% endfor %} - {% else %} - {{ field|add_form_control }} - {% endif %} - | -
+ {{ field.help_text }} +
+- {% endif %} - | {% trans 'Address' %} | -- {% if not member_form %} - - {% endif %} - | -||
---|---|---|---|---|
- | {{ member.email }} | -{% trans 'Unsubscribe' %} | - {% else %} -{{ member }} | -{% trans 'Delete' %} | - {% endif %} -
{{ empty_error }}
- {% endif %} + {{ member_form.email.label_tag }} + {{ member_form.email|add_form_control }} ++ {% endif %} + | {% trans 'Address' %} | ++ {% if role == 'subscribers' %} + + {% endif %} + | +||
---|---|---|---|---|
+ | {{ member.email }} | +{% trans 'Unsubscribe' %} | + {% else %} +{{ member }} | +{% trans 'Delete' %} | + {% endif %} +
{{ empty_error }}
+ {% endif %} + {% endblock main %} {% block additionaljs %}