2021-12-31 03:19:55 +00:00
{% extends 'components/modal.html' %}
2021-12-07 20:30:21 +00:00
{% 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 %}
2022-03-10 17:49:27 +00:00
< div class = "buttons is-right is-flex-grow-1" >
< button type = "button" class = "button" data-modal-close > {% trans "Cancel" %}< / button >
< button class = "button is-primary" type = "submit" > {% trans "Confirm" %}< / button >
< / div >
2021-12-07 20:30:21 +00:00
{% endblock %}
{% block modal-form-close %}< / form > {% endblock %}