Remove unnecessary braces on pluralization filter

I should amend this, but nobody will notice if I make the commit subject line sound complex enough.
This commit is contained in:
Xevion
2022-03-29 18:14:55 -05:00
parent fd35443a9a
commit 4d986d2c52

View File

@@ -22,7 +22,7 @@
<span title="{{ user.time_registered }}">Registered {{ user.get_registration_delta() }} ago</span><br>
{# 0 likes<br>#}
{% with post_count = user.get_post_count() %}
{{ post_count }} post{{ post_count|pluralize() }}<br>
{{ post_count }} post{{ post_count|pluralize }}<br>
{% endwith %}
</div>
</div>