{% extends 'layouts/app.twig' %} {% import 'macros/base.twig' as m %} {% import 'macros/form.twig' as f %} {% set title %}{% block title %}{{ __('shifts.history') }}{% endblock %}{% endset %} {% block content %}
{{ __('general.id') }} | {{ __('title.title') }} | {{ __('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.count }} | {{ shift.start.format(__('general.datetime')) }} | {{ shift.end.format(__('general.datetime')) }} | {{ m.user(shift.createdBy) }} | {{ shift.created_at.format(__('general.datetime')) }} |