diff --git a/templates/account/show.html b/templates/account/show.html
index e1074394..3e36faf0 100644
--- a/templates/account/show.html
+++ b/templates/account/show.html
@@ -50,6 +50,17 @@
{% trans %}Status{% endtrans %}: |
+ {% if not user.InactivityTS %}
+ {{ "Active" | tr }} |
+ {% else %}
+ {% set inactive_ds = user.InactivityTS | dt | as_timezone(timezone) %}
+
+ {{
+ "Inactive since %s" | tr
+ | format(inactive_ds.strftime("%Y-%m-%d %H:%M"))
+ }}
+ |
+ {% endif %}
{{ "Active" if not user.Suspended else "Suspended" | tr }} |