1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
#from __future__ import unicode_literals
from django.db import models
from django.contrib.auth.models import User
from django.core.validators import RegexValidator
position_choices = (
("coordinator", "Coordinator"),
("instructor", "Instructor")
)
def has_profile(user):
""" check if user has profile """
return True if hasattr(user, 'profile') else False
class Profile(models.Model):
"""Profile for users(instructors and coordinators)"""
user = models.OneToOneField(User)
institute = models.CharField(max_length=150)
department = models.CharField(max_length=150)
phone_number = models.CharField(
max_length=15,
validators=[RegexValidator(
regex=r'^\+?1?\d{9,15}$', message=(
"Phone number must be entered \
in the format: '+999999999'.\
Up to 15 digits allowed.")
)])
position = models.CharField(max_length=32, choices=position_choices)
def __str__(self):
return u"{0} {1} | {2} ".format(self.user.first_name,
self.user.last_name,
self.user.email
)
class Course(models.Model):
""""Admin creates courses which can be used by the instructor to create workshops.
"""
course_name = models.CharField(max_length=120)
course_description = models.TextField()
course_duration = models.CharField(max_length=12)
def __str__(self):
return u"{0} {1}".format(self.course_name, self.course_duration)
class Workshop(models.Model):
"""Instructor Creates workshop based on
Courses available"""
workshop_creator = models.ForeignKey(Profile, on_delete=models.CASCADE)
workshop_title = models.ForeignKey(Course, on_delete=models.CASCADE,\
help_text='Select the course you would like to create a workshop for')
date = models.DateField()
start_time = models.TimeField()
end_time = models.TimeField()
status = models.BooleanField()
def __str__(self):
return u"{0} | {1}".format(self.workshop_title, self.date)
|