diff --git a/bookwyrm/templates/book/file_links/edit_links.html b/bookwyrm/templates/book/file_links/edit_links.html
index c56f97a6..5ba45700 100644
--- a/bookwyrm/templates/book/file_links/edit_links.html
+++ b/bookwyrm/templates/book/file_links/edit_links.html
@@ -33,6 +33,7 @@
{% trans "Added by" %} |
{% trans "Filetype" %} |
{% trans "Domain" %} |
+ {% trans "Status" %} |
{% trans "Actions" %} |
{% for link in book.file_links.all %}
@@ -47,11 +48,23 @@
{{ link.filelink.filetype }}
- {{ link.domain.name }} ({{ link.domain.get_status_display }})
+ {{ link.domain.name }}
{% trans "Report spam" %}
|
+
+ {% with status=link.domain.status %}
+
+
+
+
+
+ {{ link.domain.get_status_display }}
+
+
+ {% endwith %}
+ |
|