{% 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 }} {% include "core/partials/field_errors.html" with field=form.requester_name %}
{{ form.requester_email }} {% include "core/partials/field_errors.html" with field=form.requester_email %}
{{ form.category }} {% include "core/partials/field_errors.html" with field=form.category %}
{{ form.priority }} {% include "core/partials/field_errors.html" with field=form.priority %}
{{ form.subject }} {% include "core/partials/field_errors.html" with field=form.subject %}
{{ form.description }} {% include "core/partials/field_errors.html" with field=form.description %}
View queue
{% endblock %}