moviewyrm/bookwyrm/templates/settings/reports/report_header.html

23 lines
580 B
HTML
Raw Normal View History

2022-01-10 22:55:10 +00:00
{% load i18n %}
{% load utilities %}
2022-02-24 20:48:52 +00:00
{% if report.status %}
2022-01-10 22:55:10 +00:00
{% blocktrans trimmed with report_id=report.id username=report.user|username %}
Report #{{ report_id }}: Status posted by @{{ username }}
{% endblocktrans %}
{% elif report.links.exists %}
{% blocktrans trimmed with report_id=report.id username=report.user|username %}
Report #{{ report_id }}: Link added by @{{ username }}
{% endblocktrans %}
{% else %}
{% blocktrans trimmed with report_id=report.id username=report.user|username %}
Report #{{ report_id }}: User @{{ username }}
{% endblocktrans %}
{% endif %}