start thinking about presentations

This commit is contained in:
Ross
2024-11-11 13:36:37 +00:00
parent fa2d270dfb
commit a65ceffbfb
+19
View File
@@ -1719,3 +1719,22 @@ class ExamCollection(models.Model, AuthorMixin):
def get_absolute_url(self):
return reverse("generic:examcollection_detail", kwargs={"pk": self.pk})
#class Presentation(models.Model, AuthorMixin):
#
# name = models.CharField(max_length=255, help_text="Name of the presentation")
#
# date_created = models.DateField(help_text="Date the presentation was created", auto_now_add=True)
#
# date_updated = models.DateField(help_text="Date the presentation was last updated", auto_now=True)
#
# markdown = models.TextField(help_text="Markdown text for the presentation")
#
# output_html = models.TextField(help_text="HTML output of the presentation")
#
# author = models.ManyToManyField(
# settings.AUTH_USER_MODEL,
# blank=True,
# help_text="Author/Manager(s) of the exam collection",
# )