engelsystem/resources/views/emails/worklog-from-shift.twig

17 lines
395 B
Twig
Raw Normal View History

{% extends "emails/mail.twig" %}
{% block introduction %}
{{ __('notification.shift.deleted.introduction') }}
{% endblock %}
{% block message %}
{{ name }}
{{ title }}
2023-11-23 14:30:46 +01:00
{{ start.format(__('general.datetime')) }} - {{ end.format(__('general.datetime')) }}
2023-10-15 19:25:55 +02:00
{{ location.name }}
{% if start <= date() and not freeloaded %}
{{ __('notification.shift.deleted.worklog') }}
{% endif %}
{% endblock %}