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

My Schedule

My Schedule

{% if tickets %}
{% for ticket in tickets %}
{{ ticket.scheduled_date|time:"H:i" }} {% if ticket.is_past_due %} {% endif %}
{% if ticket.estimated_duration %}
{{ ticket.estimated_duration }}
{% endif %}
{{ ticket.get_priority_display }}
{{ ticket.customer_name }}
{{ ticket.ticket_id }} • {{ ticket.title }}
{% if ticket.location %}
{{ ticket.location }}
{% endif %} {% if ticket.customer and ticket.customer.phone %} {% endif %}
View {% if ticket.status == 'scheduled' %} {% elif ticket.status == 'in_progress' %} {% endif %} {% if ticket.customer and ticket.customer.phone %} Call {% endif %}
{% endfor %}
{% for ticket in tickets %} {% endfor %}
Date & Time Ticket Customer/Type Duration Status Actions
{{ ticket.scheduled_date|date:"M d, Y" }}
{{ ticket.scheduled_date|time:"H:i" }} {% if ticket.scheduled_end_time %} - {{ ticket.scheduled_end_time|time:"H:i" }} {% endif %}
{{ ticket.ticket_id }}
{{ ticket.title|truncatechars:40 }}
{{ ticket.get_category_display }}
{{ ticket.customer_name }} {% if ticket.customer %}
{{ ticket.customer.phone }} {% endif %}
{% if ticket.estimated_duration %} Est: {{ ticket.estimated_duration }} {% else %} Not set {% endif %} {% if ticket.actual_duration %}
Actual: {{ ticket.actual_duration }} {% endif %}
{{ ticket.get_status_display }} {% if ticket.work_started_at %}
Started {% endif %}
View {% if ticket.status != 'resolved' and ticket.status != 'closed' %} {% if not ticket.work_started_at %} {% else %} {% endif %} {% endif %}
{% else %}
No scheduled tasks

You don't have any scheduled tasks for the selected period.

View All Tickets
{% endif %}
Swipe or tap cards for more options
You're currently offline. Some features may not work.
{% endblock %} {% block extra_js %} {% endblock %}