diff --git a/bookwyrm/templates/book/book.html b/bookwyrm/templates/book/book.html
index 774b2b653..6467bb71a 100644
--- a/bookwyrm/templates/book/book.html
+++ b/bookwyrm/templates/book/book.html
@@ -389,9 +389,14 @@
{% if can_edit_book %}
- {% trans "Add link to copy" as button_text %}
{% 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="plus" fallback_url=fallback_url %}
+
{% endif %}
@@ -407,7 +412,7 @@
{% endif %}
{% if can_edit_book %}
- {% include 'book/file_link_modal.html' with book=book controls_text="edit_file_links" controls_uid=book.id %}
+ {% include 'book/file_link_modal.html' with book=book id="edit-links" %}
{% endif %}
diff --git a/bookwyrm/templates/book/file_link_modal.html b/bookwyrm/templates/book/file_link_modal.html
index 6896fba81..04e215574 100644
--- a/bookwyrm/templates/book/file_link_modal.html
+++ b/bookwyrm/templates/book/file_link_modal.html
@@ -12,11 +12,10 @@
{% block modal-body %}
{% csrf_token %}
-
-
- {{ file_link_form.name }}
- {% include 'snippets/form_errors.html' with errors_list=file_link_form.name.errors id="desc_name" %}
-
+
+
+ {% trans "Links from unknown domains will need to be approved by a moderator before they are added." %}
+
@@ -36,8 +35,7 @@
{% block modal-footer %}
{% if not static %}
- {% trans "Cancel" as button_text %}
- {% include 'snippets/toggle/toggle_button.html' with text=button_text %}
+
{% endif %}
{% endblock %}