{% extends "base.html" %} {% block title %}{% trans %}My account{% endtrans %}{% endblock %} {% block subtitle %}{% trans %}status and history{% endtrans %}{% endblock %} {% block content %}
{{ macros.infobox(_("Account age"), "{} days".format((current_user.created_at.today() - current_user.created_at).total_seconds() // 86400), "aqua", "calendar") }}
{{ macros.infobox(_("Profile count"), current_user.profiles.filter_by(status="active").count(), "red", "users") }}
{{ macros.infobox(_("Pending requests"), current_user.profiles.filter_by(status="request").count(), "green", "hourglass") }}
{{ macros.infobox(_("Role"), _("administrator") if current_user.is_admin else _("registered user"), "yellow", "lock") }}
{{ macros.timeline(current_user.history) }}
{% call macros.help(_("Authentication manager"), auto=False) %}

{% trans %}This is Hiboo, our account and authentication manager.{% endtrans %}

{% trans %}Hiboo is designed so you only have to remember one password and can use your many accounts on every application associated with it.{% endtrans %}

{% trans %}If you wish to sign into one of the applications, simply open your browser and go to the application: you will automatically be redirected back to Hiboo and will be able to pick the profile you desire.{% endtrans %}

{% trans %}If you are having trouble, please refer to the documentation, then contact the administrator of this service directly, using the contact button in the left panel.{% endtrans %}

{% endcall %} {% endblock %}