fix: patch to update name of member

This commit is contained in:
pateljannat
2021-04-12 18:05:43 +05:30
parent 0e1002392f
commit d38c64650e
8 changed files with 43 additions and 47 deletions

View File

@@ -0,0 +1,12 @@
{% macro profile(photo, full_name, abbr, icon) %}
{% if photo %}
<img class="avatar rounded-circle img-fluid mr-5{% if icon == 'large' %} avatar-xl {% else %} avatar-large {% endif %}"
src="{{ photo }}" alt="{{ full_name }}">
{% else %}
<div class="col-sm-2">
<div class="standard-image {% if icon == 'large' %} dashboard__abbr {% else %} dashboard__abbrSmall {% endif %}">
{{ abbr }}
</div>
</div>
{% endif %}
{% endmacro %}