{% extends "main.html" %} {% block title %}{{_("Profile for %(username)s", username=user.username)}}{% endblock %} {% block content %} {{ super() }}
gravatar

{{ user.name if user.name else user.username }}

{{ user.username }}
    {% if user.timezone %}
  • {{_("Timezone")}}
    {{ user.timezone }}
     
  • {% endif %} {% if user.ircnick %}
  • {{_("IRC Nicknames")}}
    {% for ircnick in user.ircnick %}
    {{ ircnick }}
    {% endfor %}
  • {% endif %} {% if user.locale %}
  • {{_("Locale")}} {{ user.locale }}
  • {% endif %} {% if user.gpgkeys %}
  • {{_("GPG Keys")}}
    {% for pgpkey in user.gpgkeys %}
    {{ pgpkey }}
    {% endfor %}
  • {% endif %} {% if user.rhbz_mail %}
  • {{_("RHBZ E-Mail")}} {{ user.rhbz_mail }}
  • {% endif %} {% if user.github %}
  • GitHub @{{ user.github }}
  • {% endif %} {% if user.gitlab %}
  • GitLab @{{ user.gitlab }}
  • {% endif %} {{ userlinks() if userlinks is defined }}
{% if user.username == current_user.username %} {% endif %}
    {% for group in groups %} {% with is_sponsor = group in managed_groups %}
  • {% if group.description %}
    {{ group.description }}
    {% endif %}
    {{ _('sponsor') if is_sponsor else _('member') }}
  • {% endwith %} {% endfor %}
{% endblock %} {% block scripts %} {{super()}} {% if user.timezone %} {% endif %} {% endblock %}