summaryrefslogtreecommitdiffstats
path: root/patchwork/templates/patchwork/confirm-error.html
blob: 81292e27e42bad02d8a5b82a3fd6456b137f985d (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 %}Confirmation{% endblock %}
{% block heading %}Confirmation{% endblock %}


{% block body %}

{% if error == 'inactive' %}
<p>This confirmation has already been processed; you've probably visited this
page before.</p>
{% endif %}

{% if error == 'expired' %}
<p>The confirmation has expired. If you'd still like to perform the
{{conf.get_type_display}} process, you'll need to resubmit the request.</p>
{% endif %}

{% endblock %}