23 lines
619 B
HTML
23 lines
619 B
HTML
{% extends "adm/adm_base.html" %}
|
|
{% block content %}
|
|
{% load crispy_forms_tags %}
|
|
{% if request.user.profile.agency.module_timemanagement %}
|
|
<div class="content-section col-7">
|
|
|
|
<h3>Arbeitstag für {{user.get_full_name}} erstellen</h3>
|
|
<hr>
|
|
<div class="col-6" style="margin-left: -10px;">
|
|
<form method="POST" class="">
|
|
{% csrf_token %}
|
|
{{form.media}}
|
|
{{form|crispy}}
|
|
|
|
<hr>
|
|
|
|
<a class="btn" href="{% url 'adm-user-single' user.pk %}">Abbrechen</a>
|
|
<button type="submit" class="btn btn-primary">Arbeitstag speichern</button>
|
|
</form>
|
|
</div>
|
|
|
|
{% endif %}
|
|
{% endblock content %} |