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