{% extends "panel.html" %} {% load i18n %} {% load inventree_extras %} {% load socialaccount %} {% load crispy_forms_tags %} {% load user_sessions i18n %} {% block label %}account{% endblock %} {% block heading %} {% trans "Account Settings" %} {% endblock %} {% block actions %} {% inventree_demo_mode as demo %} {% if not demo %}
{% trans "Username" %} | {{ user.username }} |
{% trans "First Name" %} | {{ user.first_name }} |
{% trans "Last Name" %} | {{ user.last_name }} |
{% trans 'The following email addresses are associated with your account:' %}
{% else %}{% blocktrans %}You can sign in to your account using any of the following third party accounts:{% endblocktrans %}
{% else %}{% trans 'You currently have no social network accounts connected to this account.' %}
{% endif %}{% trans 'You have these factors available:' %}
Type | Name | {% for token in user.totpdevice_set.all %}
---|---|
{% trans 'TOTP' %} | {{ token.name }} |
{% trans 'Static' %} | {{ token.name }} |
{% trans 'Warning:'%} {% trans "You currently do not have any factors set up." %}
{% endif %}{% trans "IP Address" %} | {% trans "Device" %} | {% trans "Last Activity" %} |
---|---|---|
{{ object.ip }} | {{ object.user_agent|device|default_if_none:unknown_on_unknown|safe }} | {% if object.session_key == session_key %} {% blocktrans with time=object.last_activity|timesince %}{{ time }} ago (this session){% endblocktrans %} {% else %} {% blocktrans with time=object.last_activity|timesince %}{{ time }} ago{% endblocktrans %} {% endif %} |