updated to running

This commit is contained in:
2026-01-09 22:44:40 -05:00
parent 11b4a422a2
commit f6672a880a
80 changed files with 142 additions and 9409 deletions

View File

@@ -10,6 +10,10 @@ class Calendar(models.Model):
shortcode = models.CharField(max_length=3, unique=True)
desc = models.TextField(blank=True, null=True)
class Meta:
verbose_name_plural = "Calendars"
ordering = ['name',]
def __unicode__(self):
return "%s" % self.shortcode