summaryrefslogtreecommitdiff
path: root/releng
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-06-06 16:10:50 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-06-06 16:10:50 +0000
commitcb216991a92331a79d811105e7884dec299b010f (patch)
treecd806ef2ee1f01e76b54477e0eadb8cada139141 /releng
parentad2edd683a86e3fb4dd4a5eb365d22e02bcce5ef (diff)
parent7dd2c8ea0a0264b86c49f3168dcb41a4337ccc73 (diff)
Merge branch 'master' of /srv/git/projects/parabolaweb
Diffstat (limited to 'releng')
-rw-r--r--releng/views.py16
1 files changed, 10 insertions, 6 deletions
diff --git a/releng/views.py b/releng/views.py
index 3180a9ed..1d4a0b5e 100644
--- a/releng/views.py
+++ b/releng/views.py
@@ -24,12 +24,12 @@ class TestForm(forms.ModelForm):
source = standard_field(Source)
clock_choice = standard_field(ClockChoice)
filesystem = standard_field(Filesystem,
- help_text="verify /etc/fstab, `df -hT` output and commands like " \
- "lvdisplay for special modules")
+ help_text="Verify /etc/fstab, `df -hT` output and commands like " \
+ "lvdisplay for special modules.")
modules = forms.ModelMultipleChoiceField(queryset=Module.objects.all(),
help_text="", widget=forms.CheckboxSelectMultiple(), required=False)
bootloader = standard_field(Bootloader,
- help_text="Verify that the entries in the bootloader config look ok")
+ help_text="Verify that the entries in the bootloader config looks OK.")
rollback_filesystem = standard_field(Filesystem,
help_text="If you did a rollback followed by a new attempt to setup " \
"your blockdevices/filesystems, select which option you took here.",
@@ -38,9 +38,13 @@ class TestForm(forms.ModelForm):
help_text="If you did a rollback followed by a new attempt to setup " \
"your blockdevices/filesystems, select which option you took here.",
widget=forms.CheckboxSelectMultiple(), required=False)
- success = forms.BooleanField(help_text="Only check this if everything went fine. " \
- "If you you ran into any errors please specify them in the " \
- "comments.", required=False)
+ success = forms.BooleanField(
+ help_text="Only check this if everything went fine. " \
+ "If you ran into problems please create a ticket on <a " \
+ "href=\"https://bugs.archlinux.org/index.php?project=6\">the " \
+ "bugtracker</a> (or check that one already exists) and link to " \
+ "it in the comments.",
+ required=False)
website = forms.CharField(label='',
widget=forms.TextInput(attrs={'style': 'display:none;'}), required=False)