From 6981987be192e671644471c02d758de8004fc664 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Knut=20H=C3=BChne?= Date: Thu, 23 Jun 2016 13:38:16 +0200 Subject: [PATCH] Fix help text - Descriptiont was actually the opposite of what how this was actually treated in the code --- foundation/organisation/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/foundation/organisation/models.py b/foundation/organisation/models.py index 3a4da424..571fead6 100644 --- a/foundation/organisation/models.py +++ b/foundation/organisation/models.py @@ -278,7 +278,8 @@ class NetworkGroupMembership(models.Model): title = models.CharField(max_length=100, blank=True) order = models.IntegerField( blank=True, null=True, - help_text="Higher numbers mean higher up in the food chain") + help_text="The lower the number the higher on the" + " page this Person will be shown.") networkgroup = models.ForeignKey('NetworkGroup') person = models.ForeignKey('Person')