summaryrefslogtreecommitdiffstats
path: root/templates/patchwork/user-link-confirm.html
blob: 449bfebbe38a040a630e08b48e1b67767d412686 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 %}