]> git.ozlabs.org Git - patchwork/blob - templates/patchwork/user-link.html
3eeb527392279669e50b01f1918636a36ff4f931
[patchwork] / templates / patchwork / user-link.html
1 {% extends "patchwork/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 confirmation %}
10 <p>A confirmation email has been sent to {{ confirmation.email }}.</p>
11
12 <p>beta link: <a
13  href="{% url patchwork.views.user.link_confirm key=confirmation.key %}"
14  >{% url patchwork.views.user.link_confirm key=confirmation.key %}</a></p>
15
16 {% else %}
17
18    {% if form.errors %}
19    <p>There was an error submitting your link request.</p>
20     {{ form.non_field_errors }}
21    {% endif %}
22
23    <form action="{% url patchwork.views.user.link %}" method="post">
24     {{linkform.email.errors}}
25     Link an email address: {{ linkform.email }}
26    </form>
27
28 {% endif %}
29
30 {% endblock %}