]> git.ozlabs.org Git - patchwork/blobdiff - patchwork/templates/patchwork/user-link-confirm.html
Move to a more recent django project structure
[patchwork] / patchwork / templates / patchwork / user-link-confirm.html
diff --git a/patchwork/templates/patchwork/user-link-confirm.html b/patchwork/templates/patchwork/user-link-confirm.html
new file mode 100644 (file)
index 0000000..449bfeb
--- /dev/null
@@ -0,0 +1,19 @@
+{% extends "base.html" %}
+
+{% block title %}{{ user.username }}{% endblock %}
+{% block heading %}link accounts for {{ user.username }}{% endblock %}
+
+
+{% block body %}
+
+{% if errors %}
+<p>{{ errors }}</p>
+{% else %}
+ <p>You have sucessfully linked the email address {{ person.email }} to
+  your patchwork account</p>
+
+{% endif %}
+<p>Back to <a href="{% url 'patchwork.views.user.profile' %}">your
+ profile</a>.</p>
+
+{% endblock %}