2021-12-15 20:40:01 +00:00
|
|
|
{% extends 'components/modal.html' %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block modal-title %}
|
|
|
|
{% trans "Add file link" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block modal-form-open %}
|
2021-12-15 21:11:49 +00:00
|
|
|
<form name="add-link" method="POST" action="{% url 'file-link' book.id %}">
|
2021-12-15 20:40:01 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block modal-body %}
|
|
|
|
{% csrf_token %}
|
2021-12-16 00:23:21 +00:00
|
|
|
<input type="hidden" name="book" value="{{ book.id }}">
|
2021-12-15 20:40:01 +00:00
|
|
|
<div class="field">
|
2021-12-15 21:11:49 +00:00
|
|
|
<label class="label" for="id_url">{% trans "Name:" %}</label>
|
2021-12-15 20:40:01 +00:00
|
|
|
{{ file_link_form.name }}
|
2021-12-15 21:20:05 +00:00
|
|
|
{% include 'snippets/form_errors.html' with errors_list=file_link_form.name.errors id="desc_name" %}
|
2021-12-15 20:40:01 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="columns">
|
|
|
|
<div class="column is-four-fifths">
|
|
|
|
<label class="label" for="id_url">{% trans "URL:" %}</label>
|
2021-12-15 21:20:05 +00:00
|
|
|
<input type="url" name="url" maxlength="255" class="input" required="" id="id_url" value="{% firstof file_link_form.url.value "" %}" placeholder="https://..." aria-describedby="desc_name">
|
|
|
|
{% include 'snippets/form_errors.html' with errors_list=file_link_form.url.errors id="desc_url" %}
|
2021-12-15 20:40:01 +00:00
|
|
|
</div>
|
|
|
|
<div class="column is-one-fifth">
|
|
|
|
<label class="label" for="id_filetype">{% trans "File type:" %}</label>
|
|
|
|
<input type="text" name="filetype" maxlength="5" class="input" required="" id="id_filetype" value="{% firstof file_link_form.filetype.value "" %}" placeholder="PDF">
|
2021-12-15 21:20:05 +00:00
|
|
|
{% include 'snippets/form_errors.html' with errors_list=file_link_form.filetype.errors id="desc_filetype" %}
|
2021-12-15 20:40:01 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block modal-footer %}
|
|
|
|
<button class="button is-primary" type="submit">{% trans "Save" %}</button>
|
2021-12-15 21:21:08 +00:00
|
|
|
{% if not static %}
|
|
|
|
{% trans "Cancel" as button_text %}
|
|
|
|
{% include 'snippets/toggle/toggle_button.html' with text=button_text %}
|
|
|
|
{% endif %}
|
|
|
|
|
2021-12-15 20:40:01 +00:00
|
|
|
{% endblock %}
|
|
|
|
{% block modal-form-close %}</form>{% endblock %}
|