You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
407 B
HTML
17 lines
407 B
HTML
{% extends 'base_help.html' %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block pagetitle %}{% trans 'New Ticket' %}{% endblock %}
|
|
{% block helpdesk_body %}
|
|
<div class="formpage">
|
|
<form class="pure-form pure-form-stacked" action="" method="post">
|
|
{% csrf_token %}
|
|
{{ form }}
|
|
|
|
<input type="submit" class="button" value="{% trans 'Open Ticket' %}" />
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|
|
|