]> git.ozlabs.org Git - patchwork/blobdiff - templates/patchwork/mail-form.html
Move to a more recent django project structure
[patchwork] / templates / patchwork / mail-form.html
diff --git a/templates/patchwork/mail-form.html b/templates/patchwork/mail-form.html
deleted file mode 100644 (file)
index d71b2fb..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}mail settings{% endblock %}
-{% block heading %}mail settings{% endblock %}
-
-{% block body %}
-
-<p>You can configure patchwork to send you mail on certain events,
-or block automated mail altogether. Enter your email address to
-view or change your email settings.</p>
-
-<form method="post">
-{% csrf_token %}
-<table class="form registerform">
-{% if form.errors %}
- <tr>
-  <td colspan="2" class="error">
-   There was an error accessing your mail settings:
-  </td>
- </tr>
-{% endif %}
- <tr>
-  <th>{{ form.email.label_tag }}</th>
-  <td>
-   {{form.email}}
-   {{form.email.errors}}
-  </td>
- </tr>
- <tr>
-  <td colspan="2" class="submitrow">
-   <input type="submit" value="Access mail settings"/>
-  </td>
- </tr>
-</table>
-</form>
-
-
-{% endblock %}