{% extends "base.html" %} {% block content %}
{% with staff_nav_active="users" %} {% include "partials/staff_sidebar.html" %} {% endwith %}
{% with breadcrumbs=[ {"name": "Staff", "href": "/staff"}, {"name": "Users", "href": "/staff/users"}, {"name": user.name | display_name(user.username)} ] %} {% include "partials/breadcrumbs.html" %} {% endwith %}

{{ user.name | display_name(user.username) }}

{% with staff_user_tabs_base="/staff/users/" ~ user.uuid, staff_user_tabs_active="overview" %} {% include "partials/staff_user_tabs.html" %} {% endwith %} {% if team_notice %}
{{ team_notice }}
{% endif %} {% if team_error %}
{{ team_error }}
{% endif %} {% include "partials/flash.html" %}
User details
2-20 characters. Letters, numbers, underscores, and dashes only.
Short current status text. Leave blank to clear it.
Whether this user is considered active. Uncheck this box instead of deleting users.
Whether this user is a staff member and has all permissions across the site.
Ping Mentions
Whether other users can send this user a direct ping mention.
When enabled, only users who share at least one team can ping this user.
{% with primary_label="Save changes", secondary_label="Reset", secondary_type="reset" %} {% include "partials/form_actions.html" %} {% endwith %}
User metadata
{% if user.is_staff %} Staff {% endif %} {% if user.is_active %} Active {% else %} Inactive {% endif %}
{% with copy_input_id="staff-user-uuid", copy_input_value=user.uuid, copy_input_prefix="UUID" %} {% include "partials/copy_input.html" %} {% endwith %}
Activity
{% if user.activity %}
{{ user.activity }}
{% if user.activity_updated_at %}
Updated {{ user.activity_updated_at | humantime }}
{% endif %}
{% elif user.activity_updated_at %}
No current activity
Cleared {{ user.activity_updated_at | humantime }}
{% else %}
No current activity set.
{% endif %}
Created
{{ user.created_at | humantime }}
{% with modal_id="confirm-username-change", modal_title="Change username?", modal_body="Changing this username updates how the user is found and how they sign in.", modal_confirm_text="Change username", modal_desc="Make sure any saved references to this username are updated.", modal_manual_submit=true %} {% include "partials/confirm_modal.html" %} {% endwith %} {% endblock %} {% block scripts %} {% endblock %}