forked from mirrors/bookwyrm
22 lines
580 B
HTML
22 lines
580 B
HTML
{% load i18n %}
|
|
{% load utilities %}
|
|
|
|
{% if report.status %}
|
|
|
|
{% 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 %}
|