summaryrefslogtreecommitdiffstats
path: root/templates/isotests/add.html
blob: 3678532de4199ab26eee00f6466054d601ad1a04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% 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 %}