22 lines
570 B
HTML
22 lines
570 B
HTML
{% extends "admin/index.html" %}
|
|
|
|
{% block content %}
|
|
<div id="content-main">
|
|
{% include "admin/app_list.html" with app_list=app_list show_changelinks=True %}
|
|
|
|
<div class="content">
|
|
<h1>Export üK</h1>
|
|
<h2>Edoniq Teilnehmer</h2>
|
|
<a href="{% url 'edoniq_export_students' %}" class="btn btn-primary">Teilnehmer exportieren</a>
|
|
|
|
|
|
<h2>Reset</h2>
|
|
<form action="/api/core/cypressreset/" method="post">
|
|
{% csrf_token %}
|
|
<button class="btn" name="">Testdaten zurück setzen</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|