evorepo/templates/releng/add.html
Dan McGee bfe6afcd7a Rename isotests to releng
Signed-off-by: Dan McGee <dan@archlinux.org>
2011-04-28 17:58:13 -05:00

21 lines
659 B
HTML

{% extends "base.html" %}
{% block title %}Arch Linux - Test Result Entry{% endblock %}
{% block content %}
<div class="box">
<h2>Arch Releng Testbuild Feedback Entry</h2>
<p>This page allows you to submit feedback after testing and using a
release engineering install ISO. If you do not currently have feedback to
submit, you may want to take a look at the current
<a href="{% url releng-test-overview %}">results page</a>.</p>
<div id="releng-feedback"> <form action="" method="post">{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit" />
</form>
</div>
</div>
{% endblock %}