{% extends "mlmmj/layout.html" %} {% block title %} {%- if action == 'subscribe' -%} {{ _('Subscribe') }} {%- else -%} {{ _('Unsubscribe') }} {%- endif -%} {% endblock title %} {% block main %}
{# Display custom name or default text. #} {% if name %}

{{ name |e }}

{% else %}

{%- if action == 'subscribe' -%} {{ _('Subscribe to newsletter') }} {%- else -%} {{ _('Unsubscribe from newsletter') }} {%- endif -%}

{% endif %} {# Display description of the newsletter. #} {% if description %}

{{ description }}

{% endif %} {% if msg == 'SUBSCRIBED' %}
{{ _('Thank you for subscribing.') }}
{% elif msg == 'UNSUBSCRIBED' %}
{{ _('Successfully unsubscribed.') }}
{% elif msg in ['WAIT_FOR_SUBCONFIRM', 'WAIT_FOR_UNSUBCONFIRM'] %}
{{ _('Almost finished.') }}
{%- if action == 'subscribe' -%} {{ _('We need to confirm your email address. To complete the subscription process, please click the link in the email we just sent you.') }} {%- else -%} {{ _('We need to confirm your email address. To complete the unsubscription process, please click the link in the email we just sent you.') }} {%- endif -%}
{% else %}
{{ _('Or') }}   {%- if action == 'subscribe' -%} {{ _('Unsubscribe') }} {%- else -%} {{ _('Subscribe') }} {%- endif -%}
{% endif %}
{% endblock main %}