{% extends 'base.html' %} {% block title %}Create Support Ticket - Optinet Global Links{% endblock %} {% block content %}

Create Support Ticket

Submit a new support request

Back to Tickets
Ticket Information
{% csrf_token %}
{{ form.customer }} {% if form.customer.errors %}
{{ form.customer.errors.0 }}
{% endif %}
{{ form.priority }} {% if form.priority.errors %}
{{ form.priority.errors.0 }}
{% endif %}
{{ form.assigned_employee }} {% if form.assigned_employee.errors %}
{{ form.assigned_employee.errors.0 }}
{% endif %} Recommended: Use employee assignment
{{ form.category }} {% if form.category.errors %}
{{ form.category.errors.0 }}
{% endif %}
Scheduling (Optional)
{{ form.is_scheduled }}
{{ form.title }} {% if form.title.errors %}
{{ form.title.errors.0 }}
{% endif %}
{{ form.description }}
Please provide detailed information about your issue or request
{% if form.description.errors %}
{{ form.description.errors.0 }}
{% endif %}
Cancel
{% endblock %}