diff --git a/bookwyrm/templates/snippets/status/content_status.html b/bookwyrm/templates/snippets/status/content_status.html
index 5225f04e1..b2946b83b 100644
--- a/bookwyrm/templates/snippets/status/content_status.html
+++ b/bookwyrm/templates/snippets/status/content_status.html
@@ -14,10 +14,17 @@
{% if not hide_book %}
{% with book=status.book|default:status.mention_books.first %}
{% if book %}
-
-
{% include 'snippets/book_cover.html' with book=book %}
- {% include 'snippets/stars.html' with rating=book|rating:request.user %}
- {% include 'snippets/shelve_button/shelve_button.html' with book=book %}
+
+
+
+
+
{{ book|book_description|to_markdown|default:""|safe|truncatewords_html:15 }}
+
+
{% endif %}
{% endwith %}
diff --git a/bookwyrm/templates/snippets/status/status_content.html b/bookwyrm/templates/snippets/status/status_content.html
deleted file mode 100644
index fd3c7ee70..000000000
--- a/bookwyrm/templates/snippets/status/status_content.html
+++ /dev/null
@@ -1,134 +0,0 @@
-{% load bookwyrm_tags %}
-{% load i18n %}
-
-{% with status_type=status.status_type %}
-
- {% if status_type == 'Review' or status_type == 'Rating' %}
-
- {% if status.name %}
-
- {{ status.name|escape }}
-
- {% endif %}
-
-
-
-
- {% if status_type == 'Rating' %}
- {# @todo Is it possible to not hard-code the value? #}
-
- {% endif %}
-
-
- {% include 'snippets/stars.html' with rating=status.rating %}
-
- {% endif %}
-
- {% if status.content_warning %}
-
-
{{ status.content_warning }}
-
- {% trans "Show more" as button_text %}
-
- {% with text=button_text class="is-small" controls_text="show-status-cw" controls_uid=status.id %}
- {% include 'snippets/toggle/open_button.html' %}
- {% endwith %}
-
- {% endif %}
-
-
- {% if status.content_warning %}
- {% trans "Show less" as button_text %}
-
- {% with text=button_text class="is-small" controls_text="show-status-cw" controls_uid=status.id %}
- {% include 'snippets/toggle/close_button.html' %}
- {% endwith %}
- {% endif %}
-
- {% if status.quote %}
-
-
{{ status.quote | safe }}
-
-
— {% include 'snippets/book_titleby.html' with book=status.book %}
-
- {% endif %}
-
- {% if status.content and status_type != 'GeneratedNote' and status_type != 'Announce' %}
- {% with full=status.content|safe no_trim=status.content_warning itemprop=body_prop %}
- {% include 'snippets/trimmed_text.html' %}
- {% endwith %}
- {% endif %}
-
- {% if status.attachments.exists %}
-
-
- {% for attachment in status.attachments.all %}
-
- {% endfor %}
-
-
- {% endif %}
-
-
-
-{% if not hide_book %}
- {% if status.book or status.mention_books.count %}
-
- {% if status.book %}
- {% with book=status.book %}
- {% include 'snippets/status/book_preview.html' %}
- {% endwith %}
- {% elif status.mention_books.count %}
- {% with book=status.mention_books.first %}
- {% include 'snippets/status/book_preview.html' %}
- {% endwith %}
- {% endif %}
-
- {% endif %}
-{% endif %}
-{% endwith %}