]> git.ozlabs.org Git - patchwork/blob - templates/patchwork/user-link-confirm.html
3e7b6edebc09e24c55761a9d710f453f514d87c6
[patchwork] / templates / patchwork / user-link-confirm.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ user.username }}{% endblock %}
4 {% block heading %}link accounts for {{ user.username }}{% endblock %}
5
6
7 {% block body %}
8
9 {% if errors %}
10 <p>{{ errors }}</p>
11 {% else %}
12  <p>You have sucessfully linked the email address {{ person.email }} to
13   your patchwork account</p>
14
15 {% endif %}
16 <p>Back to <a href="{% url patchwork.views.user.profile %}">your
17  profile</a>.</p>
18
19 {% endblock %}