21 lines
643 B
HTML
21 lines
643 B
HTML
{% extends "users/base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% block content %}
|
|
{% if request.user.profile.agency.module_timemanagement %}
|
|
<div class="content-section col-6">
|
|
<h3>Freien Tag anlegen</h3>
|
|
<hr>
|
|
<form method="POST" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{form.media}}
|
|
{{ form|crispy }}
|
|
<hr>
|
|
<button type="submit" class="btn btn-primary">Freien Tag anlegen</button>
|
|
<a class="btn" href="{% url 'tm-managemenetfreedays' %} ">Abbrechen</a>
|
|
</form>
|
|
</div>
|
|
{% else %}
|
|
<h3>Das Modul Abwesenheitsplanung wurden in ihrer Agentur deaktiviert.</h3>
|
|
{% endif %}
|
|
{% endblock content %}
|