{% extends "layout/base.html" %} {% block content %}

Tickets & Remarks

Reset
{% if tab == 'tickets' %}
{% if tickets %} {% for t in tickets %} {% endfor %} {% else %} {% endif %}
Status Ticket code Customers Scope Linked runs Active from Start date Resolved at Actions
{% if t.active %} 🎫 Active {% else %} ✅ Resolved {% endif %} {{ t.ticket_code }} {{ t.customers }} {{ t.scope_summary }} {{ t.linked_runs }} {{ t.active_from_date }} {{ t.start_date }} {{ t.resolved_at|local_datetime }} View {% if t.active and t.job_id %} Job page {% endif %} {% if t.active and (active_role in ['admin','operator']) %}
{% endif %}
No tickets found.
{% else %}
{% if remarks %} {% for r in remarks %} {% endfor %} {% else %} {% endif %}
Status Remark Customers Scope Linked runs Start date Resolved at Actions
{% if r.active %} 💬 Active {% else %} ✅ Resolved {% endif %}
{{ r.preview }}
{{ r.customers }} {{ r.scope_summary }} {{ r.linked_runs }} {{ r.start_date }} {{ r.resolved_at|local_datetime }} View {% if r.active and r.job_id %} Job page {% endif %} {% if r.active and (active_role in ['admin','operator']) %}
{% endif %}
No remarks found.
{% endif %} {% endblock %}