34 lines
994 B
HTML
34 lines
994 B
HTML
{% extends "users/base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% block content %}
|
|
<div class="content-section col-7">
|
|
<h3>Supportanfrage stellen</h3>
|
|
<small>Haben Sie schon in unserem <a href="https://wiki.digitale-agentur.com/" target="_blank">Wiki</a> nachgesehen? Dort finden Sie viele Tipps und Anregungen!</small>
|
|
<hr>
|
|
<form method="POST" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{form|crispy}}
|
|
|
|
<div class="form-group">
|
|
<button type="submit" class="btn btn-primary">Supportanfrage verschicken</button>
|
|
<a href="{% url 'users-dashboard' %}" class="btn">Abbrechen</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<script type="text/javascript">
|
|
/*
|
|
$(document).ready(function() {
|
|
$('#id_problem').summernote({
|
|
height: 320,
|
|
lang: "de-DE",
|
|
disableDragAndDrop: true
|
|
});
|
|
});*/
|
|
</script>
|
|
{% endblock content %}
|
|
<!--
|
|
|
|
TASK: Hier dann das DropDown noch einbinden warhscheinlich, wenn es nicht im Form gelandet ist?
|
|
|
|
-->
|