From 396e91c5644a2e293eb209895ddcab30147d6ad7 Mon Sep 17 00:00:00 2001 From: "matteo.cafarotti" Date: Tue, 7 Oct 2014 11:37:31 +0200 Subject: [PATCH] fixes broken link --- questionnaire/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/questionnaire/models.py b/questionnaire/models.py index b7ea021..56822ab 100644 --- a/questionnaire/models.py +++ b/questionnaire/models.py @@ -98,7 +98,7 @@ class QuestionSet(models.Model): heading = models.CharField(max_length=64) checks = models.CharField(max_length=128, blank=True, help_text = """Current options are 'femaleonly' or 'maleonly' and shownif="QuestionNumber,Answer" which takes the same format as requiredif for questions.""") - text = models.TextField(u'Text', help_text="This is interpreted as Textile: http://hobix.com/textile/quick.html") + text = models.TextField(u'Text', help_text="This is interpreted as Textile: http://en.wikipedia.org/wiki/Textile_(markup_language)") def questions(self): if not hasattr(self, "__qcache"):