pre release 20240903

This commit is contained in:
hayano
2024-09-03 13:19:30 +00:00
parent 80ccaace3d
commit 6f0d8d15fd
7 changed files with 229 additions and 5 deletions

View File

@ -0,0 +1,24 @@
{% extends "admin/base_site.html" %}
{% load i18n admin_urls %}
{% block content %}
<div id="content-main">
<form method="post" enctype="multipart/form-data">
{% csrf_token %}
<fieldset class="module aligned">
{% for field in form %}
<div class="form-row">
{{ field.errors }}
{{ field.label_tag }} {{ field }}
{% if field.help_text %}
<p class="help">{{ field.help_text|safe }}</p>
{% endif %}
</div>
{% endfor %}
</fieldset>
<div class="submit-row">
<input type="submit" value="CSVアップロード" class="default" name="_save">
</div>
</form>
</div>
{% endblock %}