{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}
Firmenlogo

Willkommen zurück, {{ user }}

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %} {% endfor %}
{% endif %} {% endwith %}

Benachrichtigungen

{% if notifications %}
    {% for note in notifications %}
  • {{ note.message }}
    {{ note.created_at }}
  • {% endfor %}
{% else %}

Keine neuen Benachrichtigungen

{% endif %}

Zeiterfassung

{% for entry in time_entries %}
{{ entry.activity }}
Start: {{ entry.start_time }}
Ende: {% if entry.end_time %}{{ entry.end_time }}{% else %}läuft{% endif %}
{% endfor %}
{% for bm in user_bookmarks %}

{{ bm.title }}

{% endfor %}
{% if session.is_admin == 1 %} {% endif %}
{% endblock content %}