14 lines
296 B
Text
14 lines
296 B
Text
<p style="color: green"><%= notice %></p>
|
|
|
|
<h1>Executions</h1>
|
|
|
|
<div id="executions">
|
|
<% @executions.each do |execution| %>
|
|
<%= render execution %>
|
|
<p>
|
|
<%= link_to "Show this execution", execution %>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= link_to "New execution", new_execution_path %>
|