diff --git a/bookwyrm/templates/snippets/status/header.html b/bookwyrm/templates/snippets/status/header.html index 62eae5481..c2f529bee 100644 --- a/bookwyrm/templates/snippets/status/header.html +++ b/bookwyrm/templates/snippets/status/header.html @@ -30,6 +30,9 @@ {% include "snippets/status/header_content.html" %} + {% if status.edited %} + (edited) + {% endif %}

{{ status.published_date|published_date }} diff --git a/bookwyrm/views/status.py b/bookwyrm/views/status.py index d1f2fd1ef..4771ceb20 100644 --- a/bookwyrm/views/status.py +++ b/bookwyrm/views/status.py @@ -60,6 +60,7 @@ class CreateStatus(View): models.Status.objects.select_subclasses(), id=existing_status_id ) existing_status.raise_not_editable(request.user) + existing_status.edited = True status_type = status_type[0].upper() + status_type[1:]