bookwyrm/fedireads/templates/import.html

13 lines
408 B
HTML
Raw Normal View History

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