Export overview

This commit is contained in:
gw3000 2023-08-09 21:30:13 +02:00
parent caa16cc260
commit 0fcec94275
3 changed files with 26 additions and 28 deletions

View file

@ -0,0 +1,17 @@
{% extends "base.html" %}
{% load static %}
{% block content %}
<div class="row">
<div class="col-lg-8 mb-3">
<h3>Datenexport</h3>
<p>
Anbei finden Sie mehrere Möglichkeiten die Daten der Anwendung zu
exportieren.
</p>
<ul>
<li><a href="{% url 'export_birds' %}">alle Patienten</a></li>
<li><a href="{% url 'export_costs' %}">alle Kosten</a></li>
</ul>
</div>
</div>
{% endblock content %}