Files
parse/app/views/projects/index.html.erb
2025-07-23 17:11:54 +02:00

28 lines
510 B
Plaintext

<p style="color: green"><%= notice %></p>
<% content_for :title, "Projects" %>
<h1>Projects</h1>
<div id="projects">
<table>
<thead>
<tr>
<% project_view_fields.each do |attrib| %>
<th><%= attrib.to_s.humanize %></th>
<% end %>
<th>Subprojects</th>
</tr>
</thead>
<tbody>
<% @projects.each do |project| %>
<tr id="<%= dom_id project %>">
<%= render project %>
</tr>
<% end %>
</tbody>
</table>
</div>