2021-11-12 22:36:28 +00:00
{% extends 'import/import_status.html' %}
{% load i18n %}
{% block title %}{% trans "Import Troubleshooting" %}{% endblock %}
{% block page_title %}
{% trans "Failed items" %}
{% endblock %}
2021-11-13 19:15:58 +00:00
{% block breadcrumbs %}
< li class = "is-active" >
2021-11-13 19:40:19 +00:00
< a href = "#" aria-current = "page" > {% trans "Troubleshooting" %}< / a >
2021-11-13 19:15:58 +00:00
< / li >
{% endblock %}
2021-11-12 22:36:28 +00:00
{% block actions %}
< div class = "block" >
< div class = "notification content" >
< p >
{% trans "Re-trying an import can fix missing items in cases such as:" %}
< / p >
2021-11-12 22:49:24 +00:00
< ul >
< li > {% trans "The book has been added to the instance since this import" %}< / li >
< li > {% trans "A transient error or timeout caused the external data source to be unavailable." %}< / li >
< li > {% trans "BookWyrm has been updated since this import with a bug fix" %}< / li >
< / ul >
2021-11-12 22:36:28 +00:00
< p >
{% trans "Contact your admin or < a href = 'https://github.com/bookwyrm-social/bookwyrm/issues' > open an issue< / a > if you are seeing unexpected failed items." %}
< / p >
< / div >
< form name = "retry" method = "post" action = "{% url 'import-troubleshoot' job.id %}" >
{% csrf_token %}
< button type = "submit" class = "button" > Retry all< / button >
< / form >
< / div >
{% endblock %}