]> git.ozlabs.org Git - patchwork/blobdiff - templates/patchwork/user-link.html
Move to a more recent django project structure
[patchwork] / templates / patchwork / user-link.html
diff --git a/templates/patchwork/user-link.html b/templates/patchwork/user-link.html
deleted file mode 100644 (file)
index e436c3a..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}{{ user.username }}{% endblock %}
-{% block heading %}link accounts for {{ user.username }}{% endblock %}
-
-
-{% block body %}
-
-{% if confirmation and not error %}
-<p>A confirmation email has been sent to {{ confirmation.email }}. Click
-on the link provided in the email to confirm that this address belongs to
-you.</p>
-
-{% else %}
-
-   {% if form.errors %}
-   <p>There was an error submitting your link request.</p>
-    {{ form.non_field_errors }}
-   {% endif %}
-   {% if error %}
-    <ul class="errorlist"><li>{{error}}</li></ul>
-   {% endif %}
-
-   <form action="{% url 'patchwork.views.user.link' %}" method="post">
-    {% csrf_token %}
-    {{linkform.email.errors}}
-    Link an email address: {{ linkform.email }}
-   </form>
-
-{% endif %}
-
-{% endblock %}