Added some needed string definitions for django admin and moved study groups to leaflet

This commit is contained in:
Keannu Christian Bernasol 2023-07-10 17:20:15 +08:00
parent 54347f5e26
commit 8d9364274c
5 changed files with 15 additions and 2 deletions

View file

@ -16,3 +16,6 @@ class StudentStatus(models.Model):
timestamp = models.DateField(auto_now_add=True)
study_group = models.ManyToManyField(
'study_groups.StudyGroup', through='study_groups.StudyGroupMembership', blank=True)
def __str__(self):
return self.user.full_name