Add hint about how to create a key
authorMagnus Hagander <magnus@hagander.net>
Thu, 22 Dec 2011 18:19:54 +0000 (19:19 +0100)
committerMagnus Hagander <magnus@hagander.net>
Thu, 22 Dec 2011 18:25:33 +0000 (19:25 +0100)
pgweb/account/models.py

index 4fb216e18d2c7a1898fd144bd5fa253ead7bf46c..719c3d055738a3da191345842e591d65020a4dbc 100644 (file)
@@ -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):