cheesy/moku/views/static.py

18 lines
412 B
Python
Raw Normal View History

2024-03-26 19:26:03 +00:00
from django.utils.translation import gettext_lazy
2024-03-26 16:51:55 +00:00
from moku.views.base import View
class PrivacyView(View):
"""Displays the static privacy policy page."""
template_name = "moku/privacy.jinja"
2024-03-26 19:26:03 +00:00
page_title = gettext_lazy("privacy policy")
class TermsView(View):
"""Displays the static terms of use page."""
template_name = "moku/terms.jinja"
2024-03-26 19:26:03 +00:00
page_title = gettext_lazy("terms of use")