diff options
author | Sashi20 | 2019-09-17 10:58:04 +0530 |
---|---|---|
committer | Sashi20 | 2019-09-17 10:58:04 +0530 |
commit | b8ec4fb70254d26a88f3856648399bf68dfb2921 (patch) | |
tree | 13cbc683a18034d52cb47d6ab8051d401cecb088 /website/models.py | |
parent | 2a5e987aea9960d909ddb476ccd5f95da414b501 (diff) | |
download | SciPy2019-b8ec4fb70254d26a88f3856648399bf68dfb2921.tar.gz SciPy2019-b8ec4fb70254d26a88f3856648399bf68dfb2921.tar.bz2 SciPy2019-b8ec4fb70254d26a88f3856648399bf68dfb2921.zip |
Modify the text for about us and increase the maximum length for registration description
Diffstat (limited to 'website/models.py')
-rw-r--r-- | website/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/models.py b/website/models.py index f6d2f24..dd6f08d 100644 --- a/website/models.py +++ b/website/models.py @@ -160,4 +160,4 @@ class RegistrationDetail(models.Model): start_date = models.DateTimeField(blank=True, null = True) end_date = models.DateTimeField(blank=True, null=True) registration_ticket = models.CharField(max_length=100, blank=True, null=True) - registration_description = models.CharField(max_length=250, blank= True, null= True) + registration_description = models.TextField(max_length=500, blank= True, null= True) |