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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
377 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')) }}
{{ room.name }}
{% if start <= date() and not freeloaded %}
{{ __('notification.shift.deleted.worklog') }}
{% endif %}
{% endblock %}