{# templates/dashboard/privacy_policy_list.html #} {% extends "dashboard/base.html" %} {% load i18n static %} {% block title %}{% trans "Privacy policy" %}{% endblock %} {% block content %}

{% trans "Privacy policy" %}

{% trans "Add privacy policy" %}

{% trans "Manage the privacy policy content shown on the website." %}

{% if privacy_policies %}
{% for policy in privacy_policies %} {% endfor %}
{% trans "Title" %} {% trans "Last updated" %} {% trans "Actions" %}
{{ policy.title|default:"" }}
{{ policy.last_updated|date:"M j, Y" }} {% trans "Edit" %} {% trans "Delete" %}
{% else %}
{% trans "No privacy policy yet. Add one to get started." %}
{% endif %} {% endblock %}