19 lines
516 B
HTML
19 lines
516 B
HTML
{% extends "users/base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% block content %}
|
|
<div class="content-section">
|
|
<h3>Supportanfrage stellen</h3>
|
|
<hr>
|
|
<form method="POST" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{form|crispy}}
|
|
<div class="form-group">
|
|
<button type="submit" class="btn btn-success">Supportanfrage verschicken</button>
|
|
<a href="{% url 'users-management' %}" class="btn btn-success">Abbrechen</a>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
{% endblock content %}
|
|
|