17 lines
447 B
Twig
17 lines
447 B
Twig
{% extends "emails/mail.twig" %}
|
|
|
|
{% block introduction %}
|
|
{{ __('notification.shift.deleted.introduction') }}
|
|
{% endblock %}
|
|
|
|
{% block message %}
|
|
{{ shift.shiftType.name }}
|
|
{{ shift.title }}
|
|
{{ shift.start.format(__('general.datetime')) }} - {{ shift.end.format(__('general.datetime')) }}
|
|
{{ shift.location.name }}
|
|
|
|
{% if shift.start <= date() and not entry.freeloaded %}
|
|
{{ __('notification.shift.deleted.worklog') }}
|
|
{% endif %}
|
|
{% endblock %}
|