2021-03-18 16:44:59 +00:00
|
|
|
{% extends 'components/modal.html' %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block modal-title %}
|
|
|
|
{% trans "Add cover" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block modal-form-open %}
|
|
|
|
<form name="add-cover" method="POST" action="{% url 'upload-cover' book.id %}" enctype="multipart/form-data">
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block modal-body %}
|
2021-03-18 17:03:53 +00:00
|
|
|
<section class="modal-card-body columns">
|
2021-03-18 16:44:59 +00:00
|
|
|
{% csrf_token %}
|
2021-03-18 17:03:53 +00:00
|
|
|
<div class="column">
|
|
|
|
<label class="label" for="id_cover">
|
|
|
|
{% trans "Upload cover:" %}
|
|
|
|
</label>
|
2021-03-18 16:44:59 +00:00
|
|
|
<input type="file" name="cover" accept="image/*" enctype="multipart/form-data" id="id_cover">
|
2021-03-18 17:03:53 +00:00
|
|
|
</div>
|
|
|
|
<div class="column">
|
|
|
|
<label class="label" for="id_cover_url">
|
|
|
|
{% trans "Load cover from url:" %}
|
|
|
|
</label>
|
|
|
|
<input class="input" name="cover-url" id="id_cover_url">
|
|
|
|
</div>
|
2021-03-18 16:44:59 +00:00
|
|
|
</section>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block modal-footer %}
|
|
|
|
<button class="button is-primary" type="submit">{% trans "Add" %}</button>
|
2021-03-18 17:03:53 +00:00
|
|
|
{% trans "Cancel" as button_text %}
|
|
|
|
{% include 'snippets/toggle/toggle_button.html' with text=button_text %}
|
2021-03-18 16:44:59 +00:00
|
|
|
{% endblock %}
|
|
|
|
{% block modal-form-close %}</form>{% endblock %}
|
|
|
|
|