diff options
Diffstat (limited to 'website/models.py')
-rw-r--r-- | website/models.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/website/models.py b/website/models.py index e5eb78c..15c6044 100644 --- a/website/models.py +++ b/website/models.py @@ -9,11 +9,11 @@ def get_document_dir(instance, filename): class Proposal(models.Model): user = models.ForeignKey(User) - title = models.CharField(max_length=1024) - abstract = models.TextField(max_length=1024) - content_link = models.CharField(max_length=1024) - speaker_link = models.CharField(max_length=1024) - bio = models.TextField(max_length=512) + title = models.CharField(max_length=1024, help_text='Title of your Talk') + abstract = models.TextField(max_length=1024, help_text='Abstract of your Talk') + content_link = models.CharField(max_length=1024, help_text='Link to the content of your Talk') + speaker_link = models.CharField(max_length=1024, help_text='Link to information about the Speaker') + bio = models.TextField(max_length=512, help_text='A short description about you') attachment = models.FileField(upload_to=get_document_dir) date_created = models.DateTimeField(auto_now_add=True) date_modified = models.DateTimeField(auto_now=True) |