Skip to content
This repository has been archived by the owner on Jun 29, 2019. It is now read-only.

Commit

Permalink
more paths
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydpick committed Feb 3, 2016
1 parent 504c7bb commit 2c00049
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions views/index.erb
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
<tbody>
<% @configs.sort_by { |c| c[:name] }.each do |c| %>
<tr>
<td class="config_name"><%= c[:name] %> <a class="run" href="/run/<%= c[:file] %>"></a></td>
<td class="config_name"><%= c[:name] %> <a class="run" href="run/<%= c[:file] %>"></a></td>
<td>
<% unless @logs[c[:name]].nil? %>
<ul>
<% @logs[c[:name]].each do |log| %>
<li>
<a title="<%= log[:state] %>" class="<%= log[:state] %>" href="/logs/<%= log[:filename] %>"></a> <%= epoch_to_datetime(log[:epoch]) %>
<a title="<%= log[:state] %>" class="<%= log[:state] %>" href="logs/<%= log[:filename] %>"></a> <%= epoch_to_datetime(log[:epoch]) %>
</li>
<% end %>
</ul>
Expand Down

0 comments on commit 2c00049

Please sign in to comment.