31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Neues Ticket · EPI-Support{% endblock %}
|
|
{% block content %}
|
|
|
|
<p><a class="back" href="{{ url_for('index') }}">← zurück zur Übersicht</a></p>
|
|
|
|
<section class="panel">
|
|
<div class="panel-head"><h2>Neues Ticket beim EPI-Support anlegen</h2></div>
|
|
<form method="post" action="{{ url_for('new_ticket_preview') }}" class="form">
|
|
<label>Titel / Betreff
|
|
<input type="text" name="title" required maxlength="200"
|
|
placeholder="Kurze Zusammenfassung des Anliegens">
|
|
</label>
|
|
<label>Gruppe
|
|
<select name="group" required>
|
|
{% for g in groups %}
|
|
<option value="{{ g }}" {{ 'selected' if g == 'EPI::Support' }}>{{ g }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</label>
|
|
<label>Nachricht
|
|
<textarea name="body" rows="10" required
|
|
placeholder="Beschreibe dein Anliegen…"></textarea>
|
|
</label>
|
|
<div class="form-actions">
|
|
<button class="btn-sm" type="submit">Weiter zur Bestätigung →</button>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
{% endblock %}
|