mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-26 03:21:05 +00:00
10 lines
295 B
HTML
10 lines
295 B
HTML
{% extends 'layout.html' %}
|
|
{% block content %}
|
|
<div id="content">
|
|
<form name="import" action="/import_data/" method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{ import_form.as_p }}
|
|
<button type="submit">Import</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|