blob: 466beb8c20ada4cc72a50b94dfee607c8cbaf872 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base.html" %}
{% block title %}Arch Linux - Test Result Entry{% endblock %}
{% block content %}
<a href="/isotests/">Go back to results</a>
<div class="box">
<h2>Arch releng iso build test result entry</h2>
<form action="" method="post">{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit" />
</form>
</div>
{% endblock %}
|