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

30 lines
695 B
Plaintext

<p style="color: green"><%= notice %></p>
<% content_for :title, "Subproject: #{@subproject.subproject_name}" %>
<h1>Subproject: <%= @subproject.subproject_name %></h1>
<div id="subproject">
<table>
<thead>
<tr>
<% subproject_view_fields.each do |attrib| %>
<th><%= attrib.to_s.humanize %></th>
<% end %>
</tr>
</thead>
<tbody>
<tr>
<%= render @subproject %>
</tr>
</tbody>
</table>
</div>
<div>
<%= link_to "Edit this subproject", edit_subproject_path(@subproject) %> |
<%= link_to "Back to subprojects", subprojects_path %>
<%= button_to "Destroy this subproject", @subproject, method: :delete %>
</div>