2023-06-26 22:06:05 +08:00
|
|
|
from django.db import models
|
|
|
|
from accounts.models import CustomUser
|
2023-06-27 21:12:03 +08:00
|
|
|
from study_groups.models import StudyGroup
|
2023-07-09 19:00:47 +08:00
|
|
|
from django.contrib.gis.db import models as gis_models
|
|
|
|
from django.contrib.gis.geos import Point
|
2023-06-26 22:06:05 +08:00
|
|
|
# Create your models here.
|
|
|
|
|
|
|
|
|
|
|
|
class StudentStatus(models.Model):
|
|
|
|
user = models.OneToOneField(
|
|
|
|
CustomUser, on_delete=models.CASCADE, primary_key=True)
|
2023-07-14 23:55:54 +08:00
|
|
|
location = gis_models.PointField(blank=True, null=True, srid=4326)
|
2023-06-27 21:12:03 +08:00
|
|
|
subject = models.ForeignKey(
|
2023-07-04 18:06:47 +08:00
|
|
|
'subjects.Subject', on_delete=models.SET_NULL, null=True)
|
2023-06-26 23:50:55 +08:00
|
|
|
active = models.BooleanField(default=False)
|
2023-06-26 22:06:05 +08:00
|
|
|
timestamp = models.DateField(auto_now_add=True)
|
2023-07-14 23:55:54 +08:00
|
|
|
landmark = models.ForeignKey(
|
|
|
|
'landmarks.Landmark', on_delete=models.SET_NULL, null=True)
|
2023-06-28 00:49:11 +08:00
|
|
|
study_group = models.ManyToManyField(
|
|
|
|
'study_groups.StudyGroup', through='study_groups.StudyGroupMembership', blank=True)
|
2023-07-10 17:20:15 +08:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.user.full_name
|