Files
parse/app/views/subprojects/index.html.erb
2025-07-23 15:19:59 +02:00

30 lines
596 B
Plaintext

<p style="color: green"><%= notice %></p>
<% content_for :title, "Subprojects" %>
<h1>Subprojects</h1>
<div id="subprojects">
<table>
<thead>
<tr>
<% subproject_view_fields.each do |attrib| %>
<th><%= attrib.to_s.humanize %></th>
<% end %>
</tr>
</thead>
<tbody>
<% @subprojects.each do |subproject| %>
<tr id="<%= dom_id subproject %>">
<%= render subproject %>
</tr>
<% end %>
</tbody>
</table>
</div>
<%= link_to "New subproject", new_subproject_path %>
<%= link_to "Back to main", "/" %>