digitaleagenturnc/users/templates/users/users_areatasks.html

18 lines
546 B
HTML

{% extends "users/base.html" %}
{% load crispy_forms_tags %}
{% block content %}
<div class="content-section">
<h3>Bereiche und Aufgaben von {{ user_first_name }} {{ user_last_name }} bearbeiten</h3>
<hr>
<div class="col-12">
<form method="POST">
{% csrf_token %}
{{form|crispy}}
</div>
<button type="submit" href="{% url 'users-areataskupdate' user_id %}" class="btn btn-success">Speichern</button>
<a href="{% url 'users-management' %}" class="btn">Abbrechen</a>
</div>
</form>
</script>
{% endblock content %}