bookwyrm/fedireads/templates/import.html
2020-03-27 09:33:31 -07:00

13 lines
408 B
HTML

{% extends 'layout.html' %}
{% block content %}
<div class="content-container">
<h2>Import Books from GoodReads</h2>
<form name="import" action="/import_data/" method="post" enctype="multipart/form-data">
{% csrf_token %}
{{ import_form.as_p }}
<button type="submit">Import</button>
<small>Hang tight, this may take a minute!</small>
</form>
</div>
{% endblock %}