diff --git a/bookwyrm/templates/book/file_links/edit_links.html b/bookwyrm/templates/book/file_links/edit_links.html
index e6819f6bb..769310dfe 100644
--- a/bookwyrm/templates/book/file_links/edit_links.html
+++ b/bookwyrm/templates/book/file_links/edit_links.html
@@ -32,63 +32,71 @@
{% trans "URL" %} |
{% trans "Added by" %} |
{% trans "Filetype" %} |
+ {% trans "Availability" %} |
{% trans "Domain" %} |
{% trans "Status" %} |
{% trans "Actions" %} |
{% for link in links %}
-
- {{ link.url }}
- |
-
- {% if link.added_by %}
- {{ link.added_by.display_name }}
- {% else %}
- {% trans "Unknown user" %}
- {% endif %}
- |
-
- {{ link.filelink.filetype }}
- |
-
- {{ link.domain.name }}
-
- {% trans "Report spam" %}
-
- |
-
- {% with status=link.domain.status %}
-
-
-
-
-
- {{ link.domain.get_status_display }}
-
-
- {% endwith %}
- |
-
- |
+
|