2022-07-31 19:17:44 +02:00
|
|
|
{% extends "emails/mail.twig" %}
|
|
|
|
|
|
|
|
{% block introduction %}
|
|
|
|
{{ __('notification.shift.deleted.introduction') }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block message %}
|
2023-12-24 15:44:26 +01:00
|
|
|
{{ shift.shiftType.name }}
|
|
|
|
{{ shift.title }}
|
|
|
|
{{ shift.start.format(__('general.datetime')) }} - {{ shift.end.format(__('general.datetime')) }}
|
|
|
|
{{ shift.location.name }}
|
2022-07-31 19:17:44 +02:00
|
|
|
|
2023-12-24 15:44:26 +01:00
|
|
|
{% if shift.start <= date() and not entry.freeloaded %}
|
2022-07-31 19:17:44 +02:00
|
|
|
{{ __('notification.shift.deleted.worklog') }}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|