first commit

This commit is contained in:
Kris
2024-02-03 08:34:36 -05:00
commit 2f398caa90
102 changed files with 2717 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<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 %>