22 lines
628 B
HTML
22 lines
628 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>Zum Arbeitstag am {{workday.start|date:"d.m.Y"}} Pause hinzufügen</h3>
|
|
<hr>
|
|
<div class="col-6" style="margin-left: -10px;">
|
|
<form method="POST" class="">
|
|
{% csrf_token %}
|
|
{{form.media}}
|
|
{{form}}
|
|
|
|
<hr>
|
|
<a class="btn" href="{% url 'adm-workday-update' workday.pk %}">Abbrechen</a>
|
|
<button type="submit" class="btn btn-primary">Pause hinzufügen</button>
|
|
</form>
|
|
</div>
|
|
|
|
{% endif %}
|
|
{% endblock content %} |