{% extends 'base.html' %} {% load static %} {% block title %}Manage Subscriptions{% endblock %} {% block emailer_head %} {% endblock %} {% block content %}

Manage Subscriptions

{% csrf_token %}

First name:
{% if form.first_name.errors %}
Please enter a first name {% endif %}

Last name:
{% if form.last_name.errors %}
Please enter a last name {% endif %}

Email address:
{% if form.subscriber_email.errors %}
Please enter a valid email address {% endif %}

Subscriptions:

{% for choice in form.subscription_choices %}

{{ choice.tag }} {{ choice.choice_label }}

{% endfor %}


{% endblock %}