18 lines
432 B
HTML
18 lines
432 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}CSV取込{% endblock %}
|
|
|
|
{% block content %}
|
|
<section>
|
|
<h2>CSV取込</h2>
|
|
<div>
|
|
<p>ここにDrag & Dropエリアを配置予定。</p>
|
|
<form method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<input type="file" name="csv_file">
|
|
<button type="submit">アップロード</button>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|