diff options
author | Sashi20 | 2020-03-02 15:41:57 +0530 |
---|---|---|
committer | Sashi20 | 2020-03-02 15:41:57 +0530 |
commit | aa26e64d6092f0e4b25fb6ac74c9dcde649fb951 (patch) | |
tree | 5bf4bbc375347a3495de9607f870d25b6bd6a42a /arduino_blog/models.py | |
parent | 7590b51f3a31c989d110eed4e132ea23c6c49afd (diff) | |
download | arduino_projects_website-aa26e64d6092f0e4b25fb6ac74c9dcde649fb951.tar.gz arduino_projects_website-aa26e64d6092f0e4b25fb6ac74c9dcde649fb951.tar.bz2 arduino_projects_website-aa26e64d6092f0e4b25fb6ac74c9dcde649fb951.zip |
Modify text into paragraphs
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 b8c60c8..84c6bd0 100644 --- a/arduino_blog/models.py +++ b/arduino_blog/models.py @@ -117,7 +117,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) - attachment = models.FileField(upload_to=get_document_dir) + #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) approval_date = models.DateTimeField(null=True, blank=True) |