hobo/hobo/matomo/templates/hobo/matomo_enable_manual.html

21 lines
441 B
HTML

{% extends "hobo/matomo_home.html" %}
{% load i18n %}
{% block appbar %}
<h2>{% trans "User tracking" %}</h2>
{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<p>
<div class="buttons">
<button class="submit-button">{% trans "Enable" %}</button>
<a class="cancel" href="{% url 'matomo-home' %}">{% trans "Cancel" %}</a>
</div>
</form>
{% endblock %}