projects
/
pgweb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1fe8d60
)
Add hint about how to create a key
author
Magnus Hagander
<magnus@hagander.net>
Thu, 22 Dec 2011 18:19:54 +0000
(19:19 +0100)
committer
Magnus Hagander
<magnus@hagander.net>
Thu, 22 Dec 2011 18:25:33 +0000
(19:25 +0100)
pgweb/account/models.py
patch
|
blob
|
blame
|
history
diff --git
a/pgweb/account/models.py
b/pgweb/account/models.py
index 4fb216e18d2c7a1898fd144bd5fa253ead7bf46c..719c3d055738a3da191345842e591d65020a4dbc 100644
(file)
--- 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):