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.
18 lines
423 B
HTML
18 lines
423 B
HTML
{% extends 'tickets/layout.html' %}
|
|
{% load i18n %}
|
|
{% load staticfiles %}
|
|
|
|
{% block tickets_content %}
|
|
<div class="formpage">
|
|
<h1>{% trans 'New Ticket' %}</h1>
|
|
|
|
<form class="pure-form pure-form-stacked" action="" method="post">
|
|
{% csrf_token %}
|
|
{{ form }}
|
|
|
|
<input type="submit" class="pure-button pure-button-primary" value="{% trans 'Open Ticket' %}" />
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|
|
|