debian-mirror-gitlab/app/views/admin/batched_jobs/_transition_log.html.haml

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

14 lines
627 B
Text
Raw Normal View History

2022-07-16 23:28:13 +05:30
%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