15 lines
792 B
Python
15 lines
792 B
Python
import uuid
|
|
|
|
from django.db import models
|
|
|
|
|
|
class CommunityTrackProposal(models.Model):
|
|
uuid = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
|
|
track_name = models.CharField('Track name', max_length=255, help_text='e.g. Time Travel with Free Software')
|
|
contact_name = models.CharField('Contact name', max_length=255)
|
|
contact_email = models.EmailField('Contact email')
|
|
overview = models.TextField(
|
|
help_text='Please provide several paragraphs outlining your topic, the target audience and suggested talk themes. If selected we will contact you for an extended track description.')
|
|
organisers = models.TextField(
|
|
'List of organisers',
|
|
help_text='Please include the names and job titles of yourself an any other organisers')
|