Added semesters

This commit is contained in:
Keannu Christian Bernasol 2023-06-27 15:48:43 +08:00
parent ceba84acb5
commit de1dabf53c
16 changed files with 119 additions and 21 deletions

View file

@ -9,7 +9,7 @@ class Course(models.Model):
shortname = models.CharField(max_length=16)
def __str__(self):
return self.shortname
return self.name
@receiver(post_migrate)