28 lines
510 B
Plaintext
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>
|
|
|
|
|