{% extends "base.html" %} {% load i18n %} {% load translations %} {% load crispy_forms_tags %} {% load permissions %} {% load icons %} {% load humanize %} {% block breadcrumbs %}
{% trans "Username" %} | {% trans "Full name" %} | {% if can_edit_user %}{% trans "E-mail" %} | {% endif %}{% trans "Last sign in" %} | {% trans "Teams" %} | |
---|---|---|---|---|---|
{{ userblock.user.username }} | {{ userblock.user.full_name }} | {{ userblock.user.email }} | {% if userblock.user.last_login %}{{ userblock.user.last_login|naturaltime }}{% else %}{% trans "Not yet signed in" %}{% endif %} | {% if userblock.expiry %} {% blocktrans with expiry=userblock.expiry|date:"DATE_FORMAT" %}Blocked until {{ expiry }}{% endblocktrans %} {% else %} {% trans "Blocked permanently" %} {% endif %} |
{% trans "Once all its permissions are removed, the user will be removed from the project." %}
{% trans "Name" %} | {% trans "Roles" %} | {% trans "Languages" %} | {% trans "Members" %} | |
---|---|---|---|---|
{{ group.name }} | {% for role in group.roles.all %} {{ role }} {% empty %} {% trans "Access only" %} {% endfor %} | {% if group.language_selection %} {% trans "All languages" %} {% else %} {% for language in group.languages.all %} {{ language }} {% endfor %} {% endif %} | {{ group.user__count|intcomma }} | {% icon 'pencil.svg' %} {% icon 'delete.svg' %} |
{% trans "Name" %} | {% trans "Expires" %} | {% trans "Teams" %} |
---|
{% trans "Your personal API key:" %} | {{ user.auth_token.key }} |
---|