Creates link template subdirectory

This commit is contained in:
Mouse Reeve
2022-01-12 16:46:14 -08:00
parent 5fcdc284ce
commit 262e641c79
7 changed files with 7 additions and 7 deletions

View File

@ -375,7 +375,7 @@
{% endif %}
<section class="content block">
{% include "book/links.html" %}
{% include "book/file_links/links.html" %}
</section>
</div>
</div>

View File

@ -6,5 +6,5 @@
{% endblock %}
{% block content %}
{% include "book/file_link_modal.html" with book=book active=True static=True id="file-link" %}
{% include "book/file_links/add_link_modal.html" with book=book active=True static=True id="file-link" %}
{% endblock %}

View File

@ -35,7 +35,7 @@
</ul>
{% for link in links.all %}
{% join "verify" link.id as verify_modal %}
{% include "book/link_verification_modal.html" with id=verify_modal %}
{% include "book/file_links/verification_modal.html" with id=verify_modal %}
{% endfor %}
{% else %}
<em>{% trans "No links available" %}</em>
@ -46,7 +46,7 @@
<span class="icon icon-pencil" aria-hidden="true"></span>
<span>{% trans "Edit links" %}</span>
</a>
{% include 'book/file_link_modal.html' with book=book id="add-links" %}
{% include 'book/file_links/add_link_modal.html' with book=book id="add-links" %}
{% endif %}
{% endif %}