Files
fizzy/app/views/projects/index.html.erb
T
2024-09-18 13:09:06 -04:00

10 lines
197 B
Plaintext

<h1>Projects</h1>
<p><%= link_to "New", new_project_path %></p>
<ul>
<% @projects.each do |project| %>
<li><%= link_to project.name, project_bubbles_path(project) %></li>
<% end %>
</ul>