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