moviewyrm/bookwyrm/templates/import.html

64 lines
2.2 KiB
HTML
Raw Normal View History

2020-03-23 16:40:09 +00:00
{% extends 'layout.html' %}
2021-02-28 02:48:10 +00:00
{% load i18n %}
{% load humanize %}
{% block title %}{% trans "Import Books" %}{% endblock %}
2020-03-23 16:40:09 +00:00
{% block content %}
2020-09-30 04:45:59 +00:00
<div class="block">
<h1 class="title">{% trans "Import Books" %}</h1>
2021-03-30 16:30:25 +00:00
<form class="box" name="import" action="/import" method="post" enctype="multipart/form-data">
2020-03-23 16:40:09 +00:00
{% csrf_token %}
2021-02-20 16:02:36 +00:00
2021-03-30 16:30:25 +00:00
<div class="columns">
<div class="column is-half">
<label class="label" for="source">
{% trans "Data source:" %}
</label>
<div class="select block">
<select name="source" id="source">
<option value="GoodReads" {% if current == 'GoodReads' %}selected{% endif %}>
GoodReads (CSV)
</option>
<option value="LibraryThing" {% if current == 'LibraryThing' %}selected{% endif %}>
LibraryThing (TSV)
</option>
</select>
</div>
<div class="field">
<label class="label" for="id_csv_file">{% trans "Data file:" %}</label>
2021-03-30 16:30:25 +00:00
{{ import_form.csv_file }}
</div>
2021-02-20 16:02:36 +00:00
</div>
2021-03-30 16:30:25 +00:00
<div class="column is-half">
<div class="field">
<label class="label">
<input type="checkbox" name="include_reviews" checked> {% trans "Include reviews" %}
</label>
</div>
<div class="field">
<label class="label">
<p>{% trans "Privacy setting for imported reviews:" %}</p>
{% include 'snippets/privacy_select.html' with no_label=True %}
</label>
</div>
</div>
</div>
<button class="button is-primary" type="submit">{% trans "Import" %}</button>
2020-03-23 16:40:09 +00:00
</form>
2020-09-30 04:45:59 +00:00
</div>
2020-09-30 04:45:59 +00:00
<div class="content block">
<h2 class="title">{% trans "Recent Imports" %}</h2>
2020-09-30 04:45:59 +00:00
{% if not jobs %}
<p>{% trans "No recent imports" %}</p>
2020-09-30 04:45:59 +00:00
{% endif %}
<ul>
{% for job in jobs %}
2021-01-12 19:28:03 +00:00
<li><a href="/import/{{ job.id }}">{{ job.created_date | naturaltime }}</a></li>
{% endfor %}
</ul>
2020-03-23 16:40:09 +00:00
</div>
{% endblock %}