]> git.ozlabs.org Git - patchwork/blob - templates/patchwork/confirm-error.html
tox: Add tox.ini file
[patchwork] / templates / patchwork / confirm-error.html
1 {% extends "base.html" %}
2
3 {% block title %}Confirmation{% endblock %}
4 {% block heading %}Confirmation{% endblock %}
5
6
7 {% block body %}
8
9 {% if error == 'inactive' %}
10 <p>This confirmation has already been processed; you've probably visited this
11 page before.</p>
12 {% endif %}
13
14 {% if error == 'expired' %}
15 <p>The confirmation has expired. If you'd still like to perform the
16 {{conf.get_type_display}} process, you'll need to resubmit the request.</p>
17 {% endif %}
18
19 {% endblock %}