From 061e33e9a80cd1b908fcf90987015c02afeb611b Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Thu, 22 Dec 2011 19:19:54 +0100 Subject: [PATCH] Add hint about how to create a key --- pgweb/account/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pgweb/account/models.py b/pgweb/account/models.py index 4fb216e1..719c3d05 100644 --- a/pgweb/account/models.py +++ b/pgweb/account/models.py @@ -3,7 +3,8 @@ from django.db import models class CommunityAuthSite(models.Model): name = models.CharField(max_length=100, null=False, blank=False) redirecturl = models.URLField(max_length=200, null=False, blank=False) - cryptkey = models.CharField(max_length=100, null=False, blank=False) + cryptkey = models.CharField(max_length=100, null=False, blank=False, + help_text="Use tools/communityauth/generate_cryptkey.py to create a key") comment = models.TextField(null=False, blank=True) def __unicode__(self): -- 2.39.5