diff --git a/bookwyrm/templates/discover/card-header.html b/bookwyrm/templates/discover/card-header.html
index 0eb9a678..8b9f6fc1 100644
--- a/bookwyrm/templates/discover/card-header.html
+++ b/bookwyrm/templates/discover/card-header.html
@@ -1,10 +1,24 @@
{% load i18n %}
{% load utilities %}
-{% with user_path=status.user.local_path username=status.user.display_name book_path=status.book.local_poth book_title=book|book_title %}
+{% with user_path=status.user.local_path username=status.user.display_name book_path=book.local_path book_title=book|book_title %}
{% if status.status_type == 'GeneratedNote' %}
- {{ status.content|safe }}
+ {% if status.content == 'wants to read' %}
+ {% blocktrans trimmed %}
+ {{ username }} wants to read {{ book_title }}
+ {% endblocktrans %}
+ {% endif %}
+ {% if status.content == 'finished reading' %}
+ {% blocktrans trimmed %}
+ {{ username }} finished reading {{ book_title }}
+ {% endblocktrans %}
+ {% endif %}
+ {% if status.content == 'started reading' %}
+ {% blocktrans trimmed %}
+ {{ username }} started reading {{ book_title }}
+ {% endblocktrans %}
+ {% endif %}
{% elif status.status_type == 'Rating' %}
{% blocktrans trimmed %}
{{ username }} rated {{ book_title }}