hobo/hobo/matomo/templates/hobo/matomo_disable.html

21 lines
519 B
HTML

{% extends "hobo/matomo_home.html" %}
{% load i18n %}
{% block appbar %}
<h2>{% trans "User tracking" %}</h2>
{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
<p>
{% trans "Are you sure you want to disable user tracking support?" %}
{{ form.as_p }}
<div class="buttons">
<button class="submit-button">{% trans "Disable" %}</button>
<a class="cancel" href="{% url 'matomo-home' %}">{% trans "Cancel" %}</a>
</div>
</form>
{% endblock %}