26 lines
655 B
HTML
26 lines
655 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>
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$('#id_problem').summernote({
|
|
height: 400
|
|
});
|
|
});
|
|
</script>
|
|
{% endblock content %}
|
|
|