11 lines
279 B
HTML
11 lines
279 B
HTML
{% extends 'main/header.html' %}
|
|
|
|
{% block content %}
|
|
<form method="POST" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<label>Upload a file</label>
|
|
<input type="file" name="upfile" />
|
|
<p>Bitte nur csv files</p>
|
|
<button type="submit">upload</button>
|
|
</form>
|
|
{% endblock %} |