<section>
  <header>
    <h1><%= t('Job') %></h1>
  </header>

  <div class="table_container">
    <table>
      <tbody>
        <tr>
          <th><%= t('Queue') %></th>
          <td>
            <a href="<%= root_path %>queues/<%= job.queue %>"><%= job.queue %></a>
          </td>
        </tr>
        <tr>
          <th><%= t('Job') %></th>
          <td>
            <%= job.display_class %>
            <%= display_tags(job) %>
          </td>
        </tr>
        <tr>
          <th><%= t('Arguments') %></th>
          <td>
            <code class="code-wrap">
              <!-- We don't want to truncate any job arguments when viewing a single job's status page -->
              <div class="args-extended"><%= display_args(job.display_args, nil) %></div>
            </code>
          </td>
        </tr>
        <tr>
          <th>JID</th>
          <td>
            <code><%= job.jid %></code>
          </td>
        </tr>
        <% if job.bid %>
        <tr>
          <th>BID</th>
          <td>
            <a href="<%= root_path %>batches/<%= job.bid %>"><%= job.bid %></a>
          </td>
        </tr>
        <% end %>
        <tr>
          <th><%= t('CreatedAt') %></th>
          <td><%= relative_time(job.created_at) %></td>
        </tr>
        <tr>
          <th><%= t('Enqueued') %></th>
          <td><%= (enqueued_at = job.enqueued_at) ? relative_time(enqueued_at) : t('NotYetEnqueued') %></td>
        </tr>
        <% unless retry_extra_items(job).empty? %>
          <tr>
            <th><%= t('Extras') %></th>
            <td>
              <code>
                <%= retry_extra_items(job).inspect %>
              </code>
            </td>
          </tr>
        <% end %>
        <% if type == :retry %>
          <% if job['retry_count'] && job['retry_count'] > 0 %>
            <tr>
              <th><%= t('RetryCount') %></th>
              <td><%= job['retry_count'] %></td>
            </tr>
            <tr>
              <th><%= t('LastRetry') %></th>
              <td><%= relative_time(job.retried_at) %></td>
            </tr>
          <% else %>
            <tr>
              <th><%= t('OriginallyFailed') %></th>
              <td><%= relative_time(job.failed_at) %></td>
            </tr>
          <% end %>
          <tr>
            <th><%= t('NextRetry') %></th>
            <td><%= relative_time(job.at) %></td>
          </tr>
        <% end %>
        <% if type == :scheduled %>
          <tr>
            <th><%= t('Scheduled') %></th>
            <td><%= relative_time(job.at) %></td>
          </tr>
        <% end %>
        <% if type == :dead %>
          <tr>
            <th><%= t('LastRetry') %></th>
            <td><%= relative_time(job.at) if job['retry_count'] %></td>
          </tr>
        <% end %>
        <% config.custom_job_info_rows&.each do |helper| %>
          <% helper.add_pair(job) do |name, value| %>
            <tr>
              <th><%= name %></th>
              <td><%= value %></td>
            </tr>
          <% end %>
        <% end %>
      </tbody>
    </table>
  </div>
</section>
