bookwyrm-mastodon/bookwyrm/templates/snippets/username.html

14 lines
302 B
HTML
Raw Normal View History

{% spaceless %}
2020-12-12 21:25:04 -05:00
{% load bookwyrm_tags %}
2021-03-07 10:56:33 -05:00
<{% if anchor %}a href="{{ user.local_path }}"{% else %}span{% endif %}>
{{ user.display_name }}
</a>
{% if possessive %}'s{% endif %}
{% if show_full and user.name or show_full and user.localname %}
({{ user.username }})
{% endif %}
{% endspaceless %}