20 lines
603 B
HTML
20 lines
603 B
HTML
{% extends "users/base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% block content %}
|
|
{% if request.user.profile.agency.module_organizer %}
|
|
<div class="content-section col-6">
|
|
<h3>Passwort anlegen</h3>
|
|
<hr>
|
|
<form method="POST" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{form|crispy}}
|
|
<hr>
|
|
<button type="submit" class="btn btn-primary">Passwort anlegen</button>
|
|
<a class="btn" href="{% url 'organizer-management' %} ">Abbrechen</a>
|
|
</form>
|
|
</div>
|
|
{% else %}
|
|
<h3>Das Modul Organizer wurden in ihrer Agentur deaktiviert.</h3>
|
|
{% endif %}
|
|
{% endblock content %}
|