Initial commit

This commit is contained in:
ThePetrovich 2026-08-17 22:42:04 +08:00
commit 97e799fd52
61 changed files with 2252 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{% extends "base.html" %}
{% load i18n %}
{% block title %}
{% trans "Privacy Policy" %}
{% endblock title %}
{% block content %}
{% with lang=request.LANGUAGE_CODE|default:"en"|slice:":2" %}
{% if lang == "ru" %}
{% include "yksa/policies/privacy_ru.html" %}
{% else %}
{% include "yksa/policies/privacy_en.html" %}
{% endif %}
{% endwith %}
{% endblock content %}