{% extends widget.get_base_template %} {% load i18n %} {% load crispy_forms_tags %} {% block content %} {% if object.title %}

{{ object.title }}

{% endif %} {% if form.saved %}

{% trans "You have successfully subscribed to the mailing list!" %}

{% else %} {% if object.show_description and object.mailing_list.description %}

{{ object.mailing_list.description }}

{% endif %}
{% crispy form %}
{% endif %} {% endblock %}