diff --git a/bookwyrm/templates/book/edit_links.html b/bookwyrm/templates/book/edit_links.html
new file mode 100644
index 00000000..b145ce15
--- /dev/null
+++ b/bookwyrm/templates/book/edit_links.html
@@ -0,0 +1,69 @@
+{% extends 'layout.html' %}
+{% load i18n %}
+{% load utilities %}
+
+{% block title %}{% trans "Edit links" %}{% endblock %}
+
+{% block content %}
+
+
+ {% blocktrans with title=book|book_title %}
+ Links for "{{ title }}"
+ {% endblocktrans %}
+
+
+
+
+
+ {% for link in book.file_links.all %}
+ {% trans "URL" %}
+ {% trans "Added by" %}
+ {% trans "Filetype" %}
+ {% trans "Domain" %}
+ {% trans "Actions" %}
+
+
+ {% endfor %}
+ {% if not book.file_links.exists %}
+
+ {{ link.url }}
+
+
+ {{ link.added_by.display_name }}
+
+
+ {{ link.filelink.filetype }}
+
+
+ {{ link.domain.name }} ({{ link.domain.get_status_display }})
+
+
+
+
+
+
+
+ {% endif %}
+ {% trans "No links available for this book." %}
+