moviewyrm/bookwyrm/templates/author/sync_modal.html
2021-12-30 13:37:07 -08:00

32 lines
859 B
HTML

{% extends 'components/new_modal.html' %}
{% load i18n %}
{% block modal-title %}
{% trans "Load data" %}
{% endblock %}
{% block modal-form-open %}
<form name="{{ source }}-update" method="POST" action="{% url 'author-update-remote' author.id source %}">
{% csrf_token %}
{% endblock %}
{% block modal-body %}
<p>
{% blocktrans trimmed %}
Loading data will connect to <strong>{{ source_name }}</strong> and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten.
{% endblocktrans %}
</p>
{% endblock %}
{% block modal-footer %}
<button class="button is-primary" type="submit">
<span>{% trans "Confirm" %}</span>
</button>
<button type="button" class="button" data-modal-close>
{% trans "Cancel" %}
</button>
{% endblock %}
{% block modal-form-close %}</form>{% endblock %}