mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-06 00:49:38 +00:00
18 lines
377 B
HTML
18 lines
377 B
HTML
{% extends 'layout.html' %}
|
|
{% block content %}
|
|
<div id="content">
|
|
<div>
|
|
<h1>The following books could not be imported: </h1>
|
|
|
|
<ul>
|
|
{% for item in failures %}
|
|
<li>
|
|
{{ item }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<p>{{ success_count }} books imported successfully</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|