Show never runned tasks

This commit is contained in:
Gregory Eremin
2013-06-06 22:28:14 +04:00
parent 1c26921387
commit 971ef5e530
5 changed files with 33 additions and 6 deletions
@@ -11,11 +11,18 @@
<tbody>
<% @tasks.each do |run| %>
<tr>
<td style="color: <%= run.success ? 'green' : 'red' %>"><%= run.name %></td>
<td><%= time_ago_in_words(run.created_at) %> ago</td>
<td><%= run.execution_time.round(6) %>s</td>
<td><%= link_to 'Run', run_task_path(run.name, back: tasks_path), class: 'radius button' %></td>
<td><%= link_to 'History', task_runs_path(run.name), class: 'secondary radius button' %></td>
<td><span class="<%= task_label(run) %> radius label"><%= run.name %></span></td>
<% if run.created_at %>
<td><%= time_ago_in_words(run.created_at) %> ago</td>
<td><%= run.execution_time.round(6) %>s</td>
<td><%= link_to 'Run', run_task_path(run.name, back: tasks_path), class: 'small radius button' %></td>
<td><%= link_to 'History', task_runs_path(run.name), class: 'secondary small radius button' %></td>
<% else %>
<td>never</td>
<td>&mdash;</td>
<td><%= link_to 'Run', run_task_path(run.name, back: tasks_path), class: 'small radius button' %></td>
<td><a class="disabled secondary small radius button">History</a></td>
<% end %>
</tr>
<% end %>
</tbody>