bookwyrm/fedireads/templates/import_results.html

19 lines
377 B
HTML
Raw Normal View History

2020-03-24 16:58:11 +00:00
{% extends 'layout.html' %}
{% block content %}
<div id="content">
<div>
<h1>The following books could not be imported: </h1>
2020-03-24 16:58:11 +00:00
<ul>
{% for item in failures %}
2020-03-24 16:58:11 +00:00
<li>
{{ item }}
2020-03-24 16:58:11 +00:00
</li>
{% endfor %}
</ul>
<p>{{ success_count }} books imported successfully</p>
2020-03-24 16:58:11 +00:00
</div>
</div>
{% endblock %}