{% extends 'base.html' %} {% block title %}Weekly Schedule - Optinet Global Links{% endblock %} {% block content %}

Weekly Schedule

Week of {{ week_start|date:"M d" }} - {{ week_end|date:"M d, Y" }}

{% for day in week_days %} {% endfor %} {% for hour in time_slots %} {% for day in week_days %} {% endfor %} {% endfor %}
Time
{{ day.date|date:"D" }}
{{ day.date|date:"M d" }}
{{ hour|time:"H:i" }} {% for ticket in day.tickets %} {% if ticket.hour == hour %}
{{ ticket.ticket_id }}
{{ ticket.title|truncatechars:15 }}
{{ ticket.assigned_person|truncatechars:12 }}
{% if ticket.estimated_duration %}
{{ ticket.estimated_duration }}
{% endif %}
{% endif %} {% endfor %}
Priority Legend:
Urgent High Medium Low
Quick Actions:
{% endblock %}