Add user-related collections feature with HTMX support and timestamps for collections

This commit is contained in:
Ross
2026-01-26 11:07:15 +00:00
parent c881da244b
commit 048168e87d
12 changed files with 238 additions and 0 deletions
+3
View File
@@ -667,6 +667,9 @@ class ExamOrCollectionGenericBase(models.Model, AuthorMixin):
name = models.CharField(max_length=200, help_text="Name of the exam/collection")
created = models.DateTimeField(auto_now_add=True, help_text="Creation timestamp")
updated = models.DateTimeField(auto_now=True, help_text="Last updated timestamp")
start_date = models.DateTimeField(
help_text="Date (and time) the exam/collection starts", null=True, blank=True
)