10 lines
287 B
HTML
10 lines
287 B
HTML
{% extends "members:base.html" %}
|
|
|
|
{% block content %}
|
|
<h1>{{ title }}</h1>
|
|
<h3>{{ header }}</h3>
|
|
<form method="POST" action="/members/import_excel" enctype="multipart/form-data">{% csrf_token %}
|
|
{{ form }}
|
|
<input type="submit" class="btn btn-primary">
|
|
</form>
|
|
{% endblock %} |