Updated the HTML context of some views.

This commit is contained in:
Johannes Erwerle 2026-04-13 20:09:27 +02:00
parent bb62b5dde4
commit eb787abfa2
7 changed files with 33 additions and 12 deletions

View file

@ -41,9 +41,14 @@ class MarkdownView(TemplateView):
return context
class AboutView(MarkdownView):
class DataProtectionView(MarkdownView):
template_name = "markdown.html"
md = "about.md"
md = "dataprotection.md"
class ImprintView(MarkdownView):
template_name = "markdown.html"
md = "imprint.md"
class BorgView(LoginRequiredMixin, ListView):