feat: add FAQ section to about

This commit is contained in:
2024-12-24 09:05:11 +01:00
parent 44cf2936d1
commit 9fffbffdb7
2 changed files with 10 additions and 1 deletions

View File

@@ -359,7 +359,7 @@ def about(request):
lang = Language.objects.get(languagecode=language_code)
legal = {}
for text_code in ["terms_of_service", "privacy_statement", "imprint", "about_us"]:
for text_code in ["terms_of_service", "privacy_statement", "imprint", "about_us", "faq"]:
try:
legal[text_code] = Text.objects.get(text_code=text_code, language=lang, )
except Text.DoesNotExist: