moviewyrm/bookwyrm/templates/book/file_links/file_link_page.html

16 lines
374 B
HTML
Raw Normal View History

2021-12-15 21:11:49 +00:00
{% extends 'layout.html' %}
{% load i18n %}
2022-01-13 01:06:36 +00:00
{% load static %}
2021-12-15 21:11:49 +00:00
{% block title %}
{% trans "File Links" %}
{% endblock %}
{% block content %}
2022-01-13 00:46:14 +00:00
{% include "book/file_links/add_link_modal.html" with book=book active=True static=True id="file-link" %}
2021-12-15 21:11:49 +00:00
{% endblock %}
2022-01-13 01:06:36 +00:00
{% block scripts %}
<script src="{% static "js/autocomplete.js" %}?v={{ js_cache }}"></script>
{% endblock %}