Files @ 789d0c8c843a
Branch filter:

Location: website/conservancy/contacts/templates/contacts/unsubscribe.html

bsturmfels
contacts: Remove ContactEntry and add Unsubscription

This change removes the unused `ContactEntry` model and the `subscribe` view and
replaces it with an `Unsubscription` model and an `unsubscribe` view. It works
similarly, but is intended to be used with the `list-unsubscribe` and
`list-unsubscribe-post` headers.
{% extends "base_conservancy.html" %}
{% block outercontent %}
  <div class="mw8 center ph2 ph3 mb4">
    <h1>Unsubscribe</h1>
    <form action="." method="post">
      {{ form.as_p }}
      <p><button type="submit" class="ph3 pv2">Submit</button></p>
    </form>
  </div>
{% endblock %}