diff options
author | Sashi20 | 2020-03-07 14:14:15 +0530 |
---|---|---|
committer | Sashi20 | 2020-03-07 14:14:15 +0530 |
commit | 4a2d460a5889c72146fd20adb1a3fd8f6de44d11 (patch) | |
tree | 0c8de33f0597a63397aebf88414189938435eac0 /arduino_blog/models.py | |
parent | e054772fbd28452597dfa48f057c56701cb432b8 (diff) | |
download | arduino_projects_website-4a2d460a5889c72146fd20adb1a3fd8f6de44d11.tar.gz arduino_projects_website-4a2d460a5889c72146fd20adb1a3fd8f6de44d11.tar.bz2 arduino_projects_website-4a2d460a5889c72146fd20adb1a3fd8f6de44d11.zip |
Alter reference field in proposal form to textarea
Diffstat (limited to 'arduino_blog/models.py')
-rw-r--r-- | arduino_blog/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arduino_blog/models.py b/arduino_blog/models.py index 97e60de..84fbd38 100644 --- a/arduino_blog/models.py +++ b/arduino_blog/models.py @@ -129,7 +129,7 @@ class Proposal(BaseClass): email = models.CharField(max_length=128) title_of_the_project = models.CharField(max_length=250) abstract = models.TextField(max_length=700) - references = models.CharField(max_length = 200, default = 'None') + references = models.TextField(default = 'None') #attachment = models.FileField(upload_to=get_document_dir) status = models.CharField(max_length=100, default='Pending', editable=True) completion_date = models.DateTimeField(null=True, blank=True) |