summaryrefslogtreecommitdiff
path: root/isotests/views.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-04-28 14:46:36 -0500
committerDan McGee <dan@archlinux.org>2011-04-28 14:47:21 -0500
commitcfb4f1bc6a45ddfc068acabc6efb9a4e350dd544 (patch)
treefd20c6e1bda777f999e1ce9bbb557b7f6d68757d /isotests/views.py
parent6516220b17d7987900961863a0b6dec23ac14855 (diff)
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 'isotests/views.py')
-rw-r--r--isotests/views.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/isotests/views.py b/isotests/views.py
index 0bb92356..1d118d3a 100644
--- a/isotests/views.py
+++ b/isotests/views.py
@@ -1,4 +1,5 @@
from django import forms
+from django.conf import settings
from django.http import HttpResponseRedirect
from django.views.generic.simple import direct_to_template
@@ -80,6 +81,7 @@ def view_results(request):
'filesystem_list': filesystem_list,
'module_list': module_list,
'bootloader_list': bootloader_list,
+ 'iso_url': settings.ISO_LIST_URL,
}
return direct_to_template(request, 'isotests/results.html', context)