{% spaceless %}
{% load i18n %}
{% load status_display %}
{% load utilities %}
{% with parent_status=status|parent %}
{% if parent_status %}
{% blocktrans trimmed with username=parent_status.user.display_name user_path=parent_status.user.local_path status_path=parent_status.local_path %}
replied to {{ username}}'s status
{% endblocktrans %}
{% endif %}
{% endwith %}
{% endspaceless %}