Sha256: dbf54328813ef5b2ee0e451e3b777dec23347916636b6dec44c05c8e0990645f
Contents?: true
Size: 780 Bytes
Versions: 22
Compression:
Stored size: 780 Bytes
Contents
<p> <%= _("Tasks lingering in states %{states} since %{time}") % { time: @report.time - @report.interval, states: @report.states.join(', ') } %> </p> <div class="dashboard"> <table> <tr> <th><%= _("ID") %></th> <th><%= _("Action") %></th> <th><%= _("Label") %></th> <th><%= _("State") %></th> <th><%= _("State updated at") %></th> </tr> <% @report.tasks.each do |task| %> <tr> <td><%= link_to task.id, foreman_tasks_task_url(task) %></td> <td><%= task.action %></td> <td><%= task.label %></td> <td><%= task.state %></td> <td><%= task.state_updated_at %></td> </tr> <% end %> </table> </div> <%= link_to _('More details'), foreman_tasks_tasks_url(search: @report.query) %>
Version data entries
22 entries across 22 versions & 1 rubygems