Adds noscript fallback for links modal
This commit is contained in:
parent
4f576b77a0
commit
cc3db31db9
6 changed files with 22 additions and 24 deletions
|
@ -361,8 +361,9 @@
|
|||
|
||||
{% if can_edit_book %}
|
||||
{% trans "Add link to copy" as button_text %}
|
||||
{% include 'snippets/toggle/toggle_button.html' with text=button_text controls_text="edit_file_links" controls_uid=book.id focus="modal_title_edit_file_links" class="is-small" icon_with_text="plus" %}
|
||||
{% include 'book/file_links_modal.html' with book=book controls_text="edit_file_links" controls_uid=book.id %}
|
||||
{% url 'file-link' book.id as fallback_url %}
|
||||
{% include 'snippets/toggle/toggle_button.html' with text=button_text controls_text="edit_file_links" controls_uid=book.id focus="modal_title_edit_file_links" class="is-small" icon_with_text="plus" fallback_url=fallback_url %}
|
||||
{% include 'book/file_link_modal.html' with book=book controls_text="edit_file_links" controls_uid=book.id %}
|
||||
{% endif %}
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -6,13 +6,13 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block modal-form-open %}
|
||||
<form name="add-link" method="POST" action="{% url 'add-file-link' book.id %}">
|
||||
<form name="add-link" method="POST" action="{% url 'file-link' book.id %}">
|
||||
{% endblock %}
|
||||
|
||||
{% block modal-body %}
|
||||
{% csrf_token %}
|
||||
<div class="field">
|
||||
<label class="label" for="id_url">{% trans "Description:" %}</label>
|
||||
<label class="label" for="id_url">{% trans "Name:" %}</label>
|
||||
{{ file_link_form.name }}
|
||||
</div>
|
||||
|
10
bookwyrm/templates/book/file_link_page.html
Normal file
10
bookwyrm/templates/book/file_link_page.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
{% extends 'layout.html' %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block title %}
|
||||
{% trans "File Links" %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% include "book/file_link_modal.html" with book=book active=True static=True %}
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue