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

14 lines
269 B
Text

<p style="color: green"><%= notice %></p>
<h1>Actions</h1>
<div id="actions">
<% @actions.each do |action| %>
<%= render action %>
<p>
<%= link_to "Show this action", action %>
</p>
<% end %>
</div>
<%= link_to "New action", new_action_path %>