{% import "account/_helpers.html" as helper %} {% macro render_admin_user(user, upload_method) %}
{{ helper.render_user_thumbnail(user, upload_method, style="height:100px; width:100px;")}}

{{user.fullname}} ({{ _('nick') }}: {{user.name}})

{{ _('Member since') }}: {{user.created[0:10]}}

{% if user.admin %} {{ _('Remove from admin group') }} {% else %} {{ _('Add to admin group') }} {% endif %}
{% endmacro %}