diff --git a/bookwyrm/templates/snippets/block_button.html b/bookwyrm/templates/snippets/block_button.html
new file mode 100644
index 00000000..ed9bb551
--- /dev/null
+++ b/bookwyrm/templates/snippets/block_button.html
@@ -0,0 +1,11 @@
+{% if not user in request.user.blocks.all %}
+
+{% else %}
+
+{% endif %}
diff --git a/bookwyrm/templates/snippets/status_options.html b/bookwyrm/templates/snippets/status_options.html
index 9b312c7c..2e2e5d35 100644
--- a/bookwyrm/templates/snippets/status_options.html
+++ b/bookwyrm/templates/snippets/status_options.html
@@ -17,14 +17,9 @@
         
     
 
-
-{% endif %}
+{% else %}
 
-    
+    {% include 'snippets/block_button.html' with user=status.user %}
 
+{% endif %}
 {% endblock %}
diff --git a/bookwyrm/templates/snippets/user_header.html b/bookwyrm/templates/snippets/user_header.html
index 14216d4b..8f5e264a 100644
--- a/bookwyrm/templates/snippets/user_header.html
+++ b/bookwyrm/templates/snippets/user_header.html
@@ -35,11 +35,14 @@
         
     
     {% if not is_self %}
-    {% include 'snippets/follow_button.html' with user=user %}
-    
+    
+        
+            {% include 'snippets/follow_button.html' with user=user %}
+        
+        
+            {% include 'snippets/user_options.html' with user=user class="is-small" %}
+        
+