Files
parse/app/views/projects/index.html.erb
Stefan Tollkühn 3735122750 initial commit
2025-07-21 12:14:42 +02:00

17 lines
316 B
Plaintext

<p style="color: green"><%= notice %></p>
<% content_for :title, "Projects" %>
<h1>Projects</h1>
<div id="projects">
<% @projects.each do |project| %>
<%= render project %>
<p>
<%= link_to "Show this project", project %>
</p>
<% end %>
</div>
<%= link_to "New project", new_project_path %>