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

31 lines
659 B
Plaintext

<p style="color: green"><%= notice %></p>
<% content_for :title, "Project: #{@project.name}" %>
<h1>Project: <%= @project.name %></h1>
<div id="project">
<table>
<thead>
<tr>
<% project_view_fields.each do |attrib| %>
<th><%= attrib.to_s.humanize %></th>
<% end %>
<th>Subprojects</th>
</tr>
</thead>
<tbody>
<tr>
<%= render @project %>
</tr>
</tbody>
</table>
<div>
<div>
<%= link_to "Edit this project", edit_project_path(@project) %> |
<%= link_to "Back to projects", projects_path %>
<%= button_to "Destroy this project", @project, method: :delete %>
</div>