{% extends 'layouts/app.twig' %} {% import 'macros/base.twig' as m %} {% import 'macros/form.twig' as f %} {% block title %}{{ __('shifts.history') }}{% endblock %} {% block content %}
{{ __('general.id') }} | {{ __('title.title') }} | {{ __('location.location') }} | {{ __('general.count') }} | {{ __('shifts.start') }} | {{ __('shifts.end') }} | {{ __('general.user') }} | {{ __('general.created_at') }} | |
---|---|---|---|---|---|---|---|---|
{{ shift.transaction_id }} |
{% if shift.schedule %}
{{ __('shifts.history.schedule', [shift.schedule.name]) }}
{% else %}
{{ shift.title }}
{% endif %} {{ shift.shiftType.name }} |
{{ shift.location.name }} | {{ shift.count }} | {{ shift.start.format(__('general.datetime')) }} | {{ shift.end.format(__('general.datetime')) }} | {{ m.user(shift.createdBy) }} | {{ shift.created_at.format(__('general.datetime')) }} |