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

15 lines
366 B
Plaintext

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