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

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

{{ user.username }}
{{ user.mail }}
{% if user.username == current_user.username %} {{_("Edit Profile")}} {% endif %}
    {% if user.pronouns %}
  • {{_("Pronouns")}}
    {% for pronoun in user.pronouns %}
    {{ pronoun }}
    {% endfor %}
  • {% endif %} {% if user.timezone %}
  • {{_("Timezone")}}
    {{ user.timezone }}
  • {{_("Current Time")}}
     
  • {% endif %} {% if user.ircnick %}
  • {{_("Chat")}}
    {% for ircnick in user.ircnick %}
    {{ ircnick|nickname }}
    {% endfor %}
  • {% endif %} {% if user.gpgkeys %}
  • {{_("GPG Keys")}}
    {% for keyid in user.gpgkeys %}
    {{ keyid }}
    {% endfor %}
  • {% endif %} {% if user.sshpubkeys %}
  • {{_("SSH Keys")}}
    {% for key in user.sshpubkeys %}
    {{ key }}
    {% endfor %}
  • {% endif %} {% if user.website_url %}
  • {{_("Website")}} {{ user.website_url }}
  • {% endif %} {% if user.rhbz_mail %}
  • {{_("RHBZ")}} {{ user.rhbz_mail }}
  • {% endif %} {% if user.github %}
  • GitHub @{{ user.github }}
  • {% endif %} {% if user.gitlab %}
  • GitLab @{{ user.gitlab }}
  • {% endif %} {{ userlinks() if userlinks is defined }}
  • {{_("%(groupcount)s Group(s), %(agreementcount)s Agreement(s)", groupcount=groups|count, agreementcount=user.agreements|count)}}
  • {% for agreement in user.agreements %}
  • {% if agreement.description %}
    {{ agreement.description }}
    {% endif %}
    {{ _('signed') }}
  • {% endfor %} {% for group in groups %}
  • {% if group.description %}
    {{ group.description }}
    {% endif %}
    {{ _('sponsor') }}
    {{ _('member') }}
  • {% else %}
  • {{user.username}} has no group memberships
  • {% endfor %}
{% endblock %} {% block scripts %} {{super()}} {% if user.timezone %} {% endif %} {% endblock %}