diff --git a/adm/templates/adm/adm_user_single.html b/adm/templates/adm/adm_user_single.html
index 277139c..0ea944c 100644
--- a/adm/templates/adm/adm_user_single.html
+++ b/adm/templates/adm/adm_user_single.html
@@ -1,5 +1,6 @@
{% extends "adm/adm_base.html" %}
{% block content %}
+{% load counter_tag %}
{% load adm_tags %}
@@ -22,6 +23,19 @@
Letzter Login |
{{userdata.last_login|default:"-"}} |
+ {% if userdata.usertime.usetime %}
+
+ | Gleitzeitkonto: |
+
+ {% loadaccounttime userdata as actualaccounttime %}
+ {% if actualaccounttime.1 == 0 %}
+ +{{actualaccounttime.0}} Stunden
+ {% else %}
+ -{{actualaccounttime.0}} Stunden
+ {% endif %}
+ |
+
+ {% endif %}