diff options
author | Dan McGee <dan@archlinux.org> | 2011-04-28 21:46:36 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-04-28 21:47:21 +0200 |
commit | cfb4f1bc6a45ddfc068acabc6efb9a4e350dd544 (patch) | |
tree | fd20c6e1bda777f999e1ce9bbb557b7f6d68757d /templates/isotests/add.html | |
parent | 6516220b17d7987900961863a0b6dec23ac14855 (diff) | |
download | archweb-cfb4f1bc6a45ddfc068acabc6efb9a4e350dd544.tar.gz archweb-cfb4f1bc6a45ddfc068acabc6efb9a4e350dd544.tar.xz |
isotests: make the various pages a bit more useful
Instructions are nice, as are links to other pages that actually flow
with the style of the rest of the site. Also fix the styling of the
labels on the results entry page as it looked a bit funky before.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/isotests/add.html')
-rw-r--r-- | templates/isotests/add.html | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/templates/isotests/add.html b/templates/isotests/add.html index b173720..dadcdd1 100644 --- a/templates/isotests/add.html +++ b/templates/isotests/add.html @@ -3,13 +3,18 @@ {% block title %}Arch Linux - Test Result Entry{% endblock %} {% block content %} -<a href="/isotests/">Go back to results</a> - <div class="box"> <h2>Arch Releng Testbuild Feedback Entry</h2> - <form action="" method="post">{% csrf_token %} - {{ form.as_p }} - <input type="submit" value="Submit" /> - </form> + + <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="/isotests/">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 %} |