2023-06-27 21:12:03 +08:00
|
|
|
from django.db import models
|
|
|
|
from subjects.models import Subject
|
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-27 21:12:03 +08:00
|
|
|
# Create your models here.
|
|
|
|
|
|
|
|
|
|
|
|
class StudyGroup(models.Model):
|
2023-06-28 00:49:11 +08:00
|
|
|
name = models.CharField(max_length=48)
|
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(Subject, on_delete=models.CASCADE)
|
|
|
|
timestamp = models.DateField(auto_now_add=True)
|
2023-09-24 19:06:50 +08:00
|
|
|
landmark = models.ForeignKey(
|
|
|
|
'landmarks.Landmark', on_delete=models.SET_NULL, null=True)
|
2023-06-27 21:12:03 +08:00
|
|
|
|
2023-07-10 17:20:15 +08:00
|
|
|
def __str__(self):
|
|
|
|
return self.name
|