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

17 lines
381 B
Twig
Raw Normal View History

{% extends "emails/mail.twig" %}
{% block introduction %}
{{ __('notification.shift.deleted.introduction') }}
{% endblock %}
{% block message %}
{{ name }}
{{ title }}
{{ start.format(__('Y-m-d H:i')) }} - {{ end.format(__('Y-m-d H:i')) }}
2023-10-15 19:25:55 +02:00
{{ location.name }}
{% if start <= date() and not freeloaded %}
{{ __('notification.shift.deleted.worklog') }}
{% endif %}
{% endblock %}