{% extends "company_base.html" %} {% block title %}Posting-Kalender - {{ session.company_name }}{% endblock %} {% block head %} {% endblock %} {% block content %}

Posting-Kalender

Plane und verwalte Posts aller Mitarbeiter

{% if view == 'week' %} {{ week_label }} {% else %} {{ month_name }} {{ year }} {% endif %}
{% if view == 'week' %} Heute {% else %} Heute {% endif %}
{% if employees %}

Mitarbeiter

{% for emp in employees %}
{{ emp.name }}
{% endfor %}
{% endif %} {% if view == 'week' %}
{% for day in calendar_weeks[0] %}
{{ day.full_date }}
{% endfor %}
{% for hour in range(0, 24) %}
{{ '%02d'|format(hour) }}:00
{% for day in calendar_weeks[0] %}
{% for post in day.posts %} {% set post_hour = post.time[:2]|int %} {% if post_hour == hour %}
{{ post.time }}
{{ post.topic_title[:15] }}{% if post.topic_title|length > 15 %}...{% endif %}
{% endif %} {% endfor %}
{% endfor %} {% endfor %}
{% else %}
Mo
Di
Mi
Do
Fr
Sa
So
{% for week in calendar_weeks %} {% for day in week %}
{{ day.day }}
{% for post in day.posts %}
{{ post.time }} {{ post.topic_title[:20] }}{% if post.topic_title|length > 20 %}...{% endif %}
{% endfor %} {% if not day.other_month %} {% endif %}
{% endfor %} {% endfor %}
{% endif %} {% if unscheduled_posts %}

Nicht geplante Posts (bereit zum Einplanen)

{% for post in unscheduled_posts %}
{{ post.employee_name }} {{ post.created_at.strftime('%d.%m.') }}

{{ post.topic_title }}

{{ post.post_content[:100] }}...

{% if post.can_schedule %} {% else %}
Keine Berechtigung zum Einplanen
{% endif %}
{% endfor %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}