10 lines
264 B
HTML
10 lines
264 B
HTML
{% extends 'index.html' %}
|
|
{% load i18n %}
|
|
{% block content %}
|
|
<form method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<input type="file" name="file">
|
|
<button type="submit">{% trans "Import Excel file" %}</button>
|
|
</form>
|
|
{% endblock %}
|