Files
suggest/app/views/suggestions/index.html.erb
2024-02-03 09:04:38 -05:00

15 lines
331 B
Plaintext

<p style="color: green"><%= notice %></p>
<h1>Suggestions</h1>
<div id="suggestions">
<% @suggestions.each do |suggestion| %>
<%= render suggestion %>
<p>
<%= link_to "Show this suggestion", suggestion %>
</p>
<% end %>
</div>
<%= link_to "New suggestion", new_suggestion_path, class: "btn btn-primary" %>