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