Initial commit
This commit is contained in:
commit
97e799fd52
61 changed files with 2252 additions and 0 deletions
14
yksa_web/templates/privacy_policy.html
Normal file
14
yksa_web/templates/privacy_policy.html
Normal 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue