ready for version 0.2

This commit is contained in:
nocci 2025-04-22 13:45:13 +02:00
parent 3a79036ec4
commit 4bebbb27e4
9 changed files with 157 additions and 37 deletions

View file

@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block content %}
<div class="card p-4 shadow-sm">
<h2 class="mb-4">{{ _('Import Games') }}</h2>
<form method="POST" enctype="multipart/form-data">
<div class="mb-3">
<label class="form-label">{{ _('CSV-Datei auswählen') }}</label>
<input type="file" name="file" class="form-control" accept=".csv" required>
</div>
<button type="submit" class="btn btn-success">{{ _('Importieren') }}</button>
<a href="{{ url_for('index') }}" class="btn btn-outline-secondary">{{ _('Abbrechen') }}</a>
</form>
</div>
{% endblock %}