23 lines
769 B
HTML
23 lines
769 B
HTML
{% extends "users/base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% block content %}
|
|
<div class="content-section">
|
|
<!-- Für das Speichern der Bilder enctype -->
|
|
<div class="col-7">
|
|
<form method="POST" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<fieldset class="form-group">
|
|
<legend class="border-bottom mb-4">
|
|
Agenturinformationen bearbeiten
|
|
</legend>
|
|
<!-- FORMS LADEN -->
|
|
{{ form|crispy }}
|
|
</fieldset>
|
|
<div class="form-group">
|
|
<button type="submit" class="btn btn-success">Speichern</button>
|
|
<a href="{% url 'agencyinfo' %}" class="btn">Abbrechen</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock content %} |