{% extends "default.html" %} {% block title %} {{ user.username }} {% endblock %} {% block breadcrumbs %}
{{ user.username }}
{% endblock %} {% block nav %}
{% trans %}Profile{% endtrans %}
{% trans %}Repositories{% endtrans %}
{% trans %}Followers{% endtrans %}
{% trans %}Following{% endtrans %}
{% if logged_in_user and logged_in_user != user.username %}
{% trans %}Follow{% endtrans %}
{% endif %} {% endblock %} {% block full %}
{% 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 %}
{% block content %}{% endblock %}
{% endblock %} {% block scripts %} {% endblock %}