mirror of
https://github.com/etnguyen03/tjdests.git
synced 2025-04-21 02:00:16 -04:00
feat(destinations): order colleges by name
This commit is contained in:
parent
d27bc82098
commit
317a8e0a21
|
@ -11,6 +11,9 @@ class College(models.Model):
|
|||
def __str__(self):
|
||||
return f"{self.name} - {self.location} ({self.ceeb_code})"
|
||||
|
||||
class Meta:
|
||||
ordering = ["name"]
|
||||
|
||||
|
||||
class Decision(models.Model):
|
||||
"""Represents a college decision."""
|
||||
|
|
Loading…
Reference in New Issue
Block a user