mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-27 17:42:08 +00:00
9 lines
271 B
HTML
9 lines
271 B
HTML
{% load forum_member_tags %}
|
|
{% if profile.avatar %}
|
|
<img class="avatar" src="{{ profile.avatar.url }}" alt="{{ profile.user|forum_member_display_name }}" />
|
|
{% elif show_placeholder %}
|
|
<span class="avatar empty">
|
|
<i class="far fa-user fa-4x" ></i>
|
|
</span>
|
|
{% endif %}
|