{% macro user_card(user, profile_url, rank_url, actions) %}
{{ user.username }}
{% if user.user_country is defined %}
{{ user.user_country }}
{% endif %} {% if user.user_title is defined %} {{ user.user_title }} {% endif %}
{% if actions is iterable %}
{% for action in actions %} {{ action.text }} {% endfor %}
{% endif %}
{% endmacro %}