debian-mirror-gitlab/app/views/admin/batched_jobs/_transition_log.html.haml
2022-07-16 19:58:13 +02:00

14 lines
627 B
Plaintext

%tr{ role: 'row' }
%td{ role: 'cell', data: { label: _('Id') } }
= transition_log.id
%td{ role: 'cell', data: { label: s_('BatchedJob|Created at') } }
= transition_log.created_at
%td{ role: 'cell', data: { label: s_('BatchedJob|Previous status') } }
= transition_log.previous_status
%td{ role: 'cell', data: { label: s_('BatchedJob|Next status') } }
= transition_log.next_status
%td{ role: 'cell', data: { label: s_('BatchedJob|Exception class') } }
= transition_log.exception_class
%td{ role: 'cell', data: { label: s_('BatchedJob|Exception message') } }
= transition_log.exception_message