evorepo/templates/releng/thanks.html
Dan McGee 8e10699d53 Use 'url from future' everywhere
The old-style url template tag disappears in Django 1.5, so we can and
should convert to the new-style tag now.

Signed-off-by: Dan McGee <dan@archlinux.org>
2012-03-23 20:09:38 -05:00

17 lines
601 B
HTML

{% extends "base.html" %}
{% load url from future %}
{% block title %}Arch Linux - Feedback - Thanks!{% endblock %}
{% block content %}
<div class="box">
<h2>Thanks!</h2>
<p>Thank you for taking the time to give us this information!
Your results have been succesfully added to our database.</p>
<p>You can now <a href="{% url 'releng-test-overview' %}">go back to the results</a>,
<a href="{% url 'releng-test-submit' %}">give more feedback</a>, or
have a look at the <a href="{% url 'releng-iso-overview' %}">look at
the ISO test overview</a>.</p>
</div>
{% endblock %}