{% extends "user-profile.html" %} {% block content %} {% if user.display_name and user.display_name != user.username %}

{{ user.display_name }}

{{ user.username }}

{% else %}

{{ user.username }}

{% endif %}
    {% if user.URL %}
  • {{ user.URL }}
  • {% endif %} {% if user.company_url %}
  • {{ user.company }}
  • {% elif user.company %}
  • {{ user.company }}
  • {% endif %} {% if user.location %}
  • {{ user.location }}
  • {% endif %} {% if user.show_mail %}
  • {{ user.email }}
  • {% endif %}
{% if user.bio %}

{{ user.bio }}

{% endif %}
{% endblock %}