blob: 845f809a79a00031c93aa656782531adad01b19a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends "layout.html" %}
{% set title = "Patch submitted" %}
{% block head %}
<meta http-equiv="refresh" content="2; URL={{ backlink|e }}">
{% endblock %}
{% block body %}
<h1>Patch submitted</h1>
<p>Your patch has been submitted to the Python documentation team and will be
processed shortly.</p>
<p>You will be redirected to the
<a href="{{ backlink|e }}">original documentation page</a> shortly.</p>
{% endblock %}
|