1
{% extends "base.html" %}
4
{% block title %}Privacy policy {{ cur_lang }} {{ block.super }}{% endblock %}
8
<link rel="stylesheet" type="text/css" media="all" href="{{ MEDIA_URL }}css/wiki.css" />
11
{% block content_header %}
12
<h1>Privacy Policy</h1>
14
{% block content_main %}
15
<div class="blogEntry">
16
{% with languages|length as count %}
19
This page is also available as:
20
{% for lang, slug in languages %}
21
{# The if statement has to be directly after the link, otherwise we have unwanted spaces #}
22
<a href="{% url 'policy_translated' slug %}">{{ lang }}</a>{% if count > 1 and forloop.revcounter0 == 1 %} and
23
{% elif count > 1 and forloop.revcounter0 != 0 %}, {% endif %}
29
{{ text|wl_markdown }}