From de5980db0a65852d932e62d4658d50c25824bde6 Mon Sep 17 00:00:00 2001 From: Thierry Carrez Date: Tue, 19 Sep 2017 12:10:23 +0200 Subject: [PATCH] Increase title to 60 chars Increase max title characters from 50 to 60 chars. Change-Id: I67f03c884988294859f36ad909218c4a12e3798b --- cfp/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfp/models.py b/cfp/models.py index 1ff409a..f4120d0 100644 --- a/cfp/models.py +++ b/cfp/models.py @@ -55,7 +55,7 @@ class Proposal(models.Model): ('R', 'Refused'), ) proposer = models.ForeignKey(User) - title = models.CharField(max_length=50, + title = models.CharField(max_length=60, help_text="The title of your proposed session. This is mandatory.") description = models.TextField( help_text="The detailed subject and goals for your proposed session. "