summaryrefslogtreecommitdiff
path: root/arduino_blog/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'arduino_blog/models.py')
-rw-r--r--arduino_blog/models.py2
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)