left4me/rails/app/views/executions/index.html.erb
mwiegand 5ab99c7779
wip
2022-11-27 17:32:21 +01:00

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 %>