{% extends "base.html" %} {% block title %}Submit a Ticket · RelayDesk{% endblock %} {% block meta_description %}Submit a support ticket with requester details, category, priority, and issue description.{% endblock %} {% block content %} New support request Tell the team what needs attention. Your submission creates a trackable ticket with a dedicated reply thread and status timeline. What happens next? We’ll create your ticket, show a confirmation page, and add it to the searchable support queue. {% csrf_token %} {% include "core/partials/form_errors.html" with form=form %} {{ form.requester_name.label }} {{ form.requester_name }} {% include "core/partials/field_errors.html" with field=form.requester_name %} {{ form.requester_email.label }} {{ form.requester_email }} {% include "core/partials/field_errors.html" with field=form.requester_email %} Category {{ form.category }} {% include "core/partials/field_errors.html" with field=form.category %} Priority {{ form.priority }} {% include "core/partials/field_errors.html" with field=form.priority %} Subject {{ form.subject }} {% include "core/partials/field_errors.html" with field=form.subject %} {{ form.description.label }} {{ form.description }} {% include "core/partials/field_errors.html" with field=form.description %} Submit ticket View queue {% endblock %}
Your submission creates a trackable ticket with a dedicated reply thread and status timeline.
We’ll create your ticket, show a confirmation page, and add it to the searchable support queue.