{% load static %} {% block title %}Tickets{% endblock %} {# Core vendor CSS - ticket module only #} {# Ticket module CSS (put your styles here) #} {# Page-specific styles #} {% block style_head %}{% endblock %}
{# Header only for the ticket module #}
Logo Ticketing
{% if request.user.is_authenticated %} Hi, {{ request.user.get_full_name|default:request.user.first_name }} Logout {% endif %}
{# Toast messages #} {% if messages %}
{% for message in messages %}
{% if message.tags == 'success' %}✅{% elif message.tags == 'error' %}❌{% elif message.tags == 'warning' %}⚠️{% elif message.tags == 'info' %}ℹ️{% endif %} {{ message }}
{% endfor %}
{% endif %} {# Content #}
{% block content %}{% endblock %}
{# Footer only for ticket module #}
{# Core vendor JS - ticket module only #} {# Page scripts #} {% block extra_js %}{% endblock %}