{# SPDX-FileCopyrightText: 2026 JWP Consulting GK #} {# SPDX-License-Identifier: AGPL-3.0-or-later #} {% extends "user_profile_base.html" %} {% load i18n %} {% load projectify %} {% block title %} {% translate "Account activity - Projectify" %} {% endblock title %} {% block user_profile_title %} {% trans "User account activity" %} {% endblock user_profile_title %} {% block user_profile_content %}
{% blocktrans with days=retention_days %}This table shows your account activity of the last {{ days }} days.{% endblocktrans %}
{% if events %}| {% trans "Activity" %} | {% trans "IP address" %} | {% trans "Date" %} |
|---|---|---|
| {{ event.get_type_display }} | {{ event.ip_address }} | {{ event.created }} |
{% trans "No account activity recorded." %}
{% endif %}{% anchor href="storefront:contact-us" label=_("contact us") as contact_link %}{% blocktrans %}If you have any questions about user account activity, please {{ contact_link }}.{% endblocktrans %}
{% go_to_action label=_("Go back") href="users:profile" grow=True %} {% endblock user_profile_content %}