]> git.ozlabs.org Git - patchwork/blobdiff - templates/patchwork/mail-settings.html
Move to a more recent django project structure
[patchwork] / templates / patchwork / mail-settings.html
diff --git a/templates/patchwork/mail-settings.html b/templates/patchwork/mail-settings.html
deleted file mode 100644 (file)
index 440af08..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}mail settings{% endblock %}
-{% block heading %}mail settings{% endblock %}
-
-{% block body %}
-<p>Settings for <strong>{{email}}</strong>:</p>
-
-<table class="horizontal">
- <tr>
-  <th>Opt-out list</th>
-{% if is_optout %}
-  <td>Patchwork <strong>may not</strong> send automated notifications to
-   this address.</td>
-  <td>
-   <form method="post" action="{% url 'patchwork.views.mail.optin' %}">
-    {% csrf_token %}
-    <input type="hidden" name="email" value="{{email}}"/>
-    <input type="submit" value="Opt-in"/>
-   </form>
-  </td>
-   
-{% else %}
-  <td>Patchwork <strong>may</strong> send automated notifications to
-   this address.</td>
-  <td>
-   <form method="post" action="{% url 'patchwork.views.mail.optout' %}">
-    {% csrf_token %}
-    <input type="hidden" name="email" value="{{email}}"/>
-    <input type="submit" value="Opt-out"/>
-   </form>
-  </td>
-{% endif %}
- </tr>
-</table>
-
-{% endblock %}