17 lines
512 B
HTML
17 lines
512 B
HTML
{% extends "admin/base_site.html" %}
|
|
{% load i18n static %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<form action="." method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<div>
|
|
<label for="csv_file">Choose CSV file:</label>
|
|
<input type="file" name="csv_file" required>
|
|
</div>
|
|
<div style="margin-top: 20px;">
|
|
<input type="submit" value="Upload CSV">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |