{% extends "profile_base.html" %} {% set profile_nav_active = "profile" %} {% block profile_content %}
{% set breadcrumbs = [ {"name": current_user.name | display_name(current_user.username)} ] %} {% include "partials/breadcrumbs.html" %}
{% include "partials/flash.html" %}
Profile details
Usernames are public and used for sign-in.
The display name shown on your profile and team pages.
Used for account notifications and sign-in.
A short status line about what you are currently doing. Leave blank to clear it.
Ping Mentions
Let other users send you a direct ping mention with an optional short note.
Only users who share at least one team with you can ping you.
Browser Notifications
Mirror in-page toast updates as native browser notifications while Pearing is open in this browser.
{% with primary_label="Save changes", secondary_label="Reset", secondary_type="reset" %} {% include "partials/form_actions.html" %} {% endwith %}
Profile metadata
{% if current_user.is_active %} Active {% else %} Inactive {% endif %}
{% with copy_input_id="profile-user-uuid", copy_input_value=current_user.uuid, copy_input_prefix="UUID" %} {% include "partials/copy_input.html" %} {% endwith %}
Activity
{% if current_user.activity %}
{{ current_user.activity }}
{% if current_user.activity_updated_at %}
Updated {{ current_user.activity_updated_at | humantime }}
{% endif %}
{% elif current_user.activity_updated_at %}
No current activity
Cleared {{ current_user.activity_updated_at | humantime }}
{% else %}
No current activity set.
{% endif %}
Created
{{ current_user.created_at | humantime }}
{% endblock %}