diff --git a/bookwyrm/templates/book/book.html b/bookwyrm/templates/book/book.html
index bd937a27c..d27c7ec54 100644
--- a/bookwyrm/templates/book/book.html
+++ b/bookwyrm/templates/book/book.html
@@ -215,10 +215,10 @@
{% endif %}
- {% with work=book.parent_work %}
+ {% with work=book.parent_work editions_count=book.parent_work.editions.count %}
- {% blocktrans trimmed count counter=work.editions.count with count=work.editions.count|intcomma %}
+ {% blocktrans trimmed count counter=editions_count with count=editions_count|intcomma %}
{{ count }} edition
{% plural %}
{{ count }} editions
diff --git a/bookwyrm/templates/layout.html b/bookwyrm/templates/layout.html
index e838ead12..1227e39c4 100644
--- a/bookwyrm/templates/layout.html
+++ b/bookwyrm/templates/layout.html
@@ -25,6 +25,7 @@
{% block body %}
diff --git a/bookwyrm/templates/settings/users/user_moderation_actions.html b/bookwyrm/templates/settings/users/user_moderation_actions.html
index 72202f379..5bd007e0d 100644
--- a/bookwyrm/templates/settings/users/user_moderation_actions.html
+++ b/bookwyrm/templates/settings/users/user_moderation_actions.html
@@ -15,6 +15,12 @@
{% endif %}
+ {% if not user.is_active and user.deactivation_reason == "pending" %}
+
+ {% endif %}
{% if user.is_active or user.deactivation_reason == "pending" %}