43 lines
1.5 KiB
HTML
43 lines
1.5 KiB
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>üK</h1>
|
|
<h1>Excel Import üK</h1>
|
|
<h2>Durchführungen und Trainer</h2>
|
|
<form method="post" enctype="multipart/form-data" action="/server/importer/coursesession-trainer-import/">
|
|
{% csrf_token %}
|
|
<input type="file" name="excel_file" accept=".xlsx, .xls">
|
|
<input type="submit" value="Durchführungen und Trainer importieren">
|
|
</form>
|
|
|
|
<h2>Teilnehmer</h2>
|
|
<form method="post" enctype="multipart/form-data" action="/server/importer/coursesession-students-import/">
|
|
{% csrf_token %}
|
|
<input type="file" name="excel_file" accept=".xlsx, .xls">
|
|
<input type="submit" value="Teilnehmer importieren">
|
|
</form>
|
|
|
|
<h2>Sync mit T2L Daten</h2>
|
|
<form method="post" enctype="multipart/form-data" action="/server/importer/t2l-sync/">
|
|
{% csrf_token %}
|
|
<input type="file" name="excel_file" accept=".xlsx, .xls">
|
|
<input type="submit" value="Teilnehmer mit T2L-Daten Synchronisiern">
|
|
</form>
|
|
|
|
<h2>Export Edoniq Teilnehmer</h2>
|
|
<a href="{% url 'edoniq_export_students' %}" class="btn btn-primary">Teilnehmer exportieren</a>
|
|
|
|
<h1>Reset</h1>
|
|
<form action="/api/core/cypressreset/" method="post">
|
|
{% csrf_token %}
|
|
<button class="btn" name="">Testdaten zurück setzen</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|