summaryrefslogtreecommitdiffstats
path: root/forum/templates/privacy.html
diff options
context:
space:
mode:
Diffstat (limited to 'forum/templates/privacy.html')
-rw-r--r--forum/templates/privacy.html42
1 files changed, 42 insertions, 0 deletions
diff --git a/forum/templates/privacy.html b/forum/templates/privacy.html
new file mode 100644
index 00000000..e66086dd
--- /dev/null
+++ b/forum/templates/privacy.html
@@ -0,0 +1,42 @@
+{% extends "base_content.html" %}
+<!-- privacy.html -->
+{% load extra_tags %}
+{% load i18n %}
+{% load humanize %}
+{% block title %}{% spaceless %}{% trans "Privacy policy" %}{% endspaceless %}{% endblock %}
+{% block forejs %}
+{% endblock %}
+{% block content %}
+<div class="headNormal">
+ {% trans "Privacy policy" %}
+</div>
+<div id="main-body" style="width:100%">
+ <p>
+ {% trans "general message about privacy" %}
+ </p>
+
+ <h3 class="subtitle">{% trans "Site Visitors" %}</h3>
+ <p>
+ {% trans "what technical information is collected about visitors" %}
+ </p>
+
+ <h3 class="subtitle">{% trans "Personal Information" %}</h3>
+ <p>
+ {% trans "details on personal information policies" %}
+ </p>
+
+ <h3 class="subtitle">{% trans "Other Services" %}</h3>
+ <p>
+ {% trans "details on sharing data with third parties" %}
+ </p>
+
+ <h3 class="subtitle">Cookies</h3>
+ <p>
+ {% trans "cookie policy details" %}
+ </p>
+ <h3 class="subtitle">{% trans "Policy Changes" %}</h3>
+ <p>{% trans "how privacy policies can be changed" %}
+ </p>
+</div>
+{% endblock %}
+<!-- end privacy.html -->