36 lines
669 B
Python
36 lines
669 B
Python
|
|
"""
|
||
|
|
Ticket Views Module
|
||
|
|
===================
|
||
|
|
UI views for the ticket system.
|
||
|
|
"""
|
||
|
|
from .creation import (
|
||
|
|
TicketCreationView,
|
||
|
|
TicketPriorityModal,
|
||
|
|
TicketManagementView,
|
||
|
|
TicketCloseModal,
|
||
|
|
TicketPriorityChangeModal,
|
||
|
|
SurveyView,
|
||
|
|
)
|
||
|
|
from .admin import (
|
||
|
|
AdminPanelView,
|
||
|
|
BulkCloseView,
|
||
|
|
ConfigPanelView,
|
||
|
|
AddCategoryModal,
|
||
|
|
RolesManagementView,
|
||
|
|
)
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"TicketCreationView",
|
||
|
|
"TicketPriorityModal",
|
||
|
|
"TicketManagementView",
|
||
|
|
"TicketCloseModal",
|
||
|
|
"TicketPriorityChangeModal",
|
||
|
|
"SurveyView",
|
||
|
|
"AdminPanelView",
|
||
|
|
"BulkCloseView",
|
||
|
|
"ConfigPanelView",
|
||
|
|
"AddCategoryModal",
|
||
|
|
"RolesManagementView",
|
||
|
|
]
|
||
|
|
|