17 lines
377 B
Twig
17 lines
377 B
Twig
|
{% 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 %}
|