Files
parse/app/views/subproject_addresses/index.html.erb
2025-07-23 17:46:22 +02:00

29 lines
677 B
Plaintext

<p style="color: green"><%= notice %></p>
<% content_for :title, "Subproject addresses" %>
<h1>Subproject addresses</h1>
<div id="subproject_addresses">
<table>
<thead>
<tr>
<% subproject_address_view_fields.each do |attrib| %>
<th><%= attrib.to_s.humanize %></th>
<% end %>
</tr>
</thead>
<tbody>
<% @subproject_addresses.each do |subproject_address| %>
<tr id="<%= dom_id subproject_address %>">
<%= render subproject_address %>
</tr>
<% end %>
</tbody>
</table>
</div>
<%= link_to "New subproject address", new_subproject_address_path %>
<%= link_to "Back to main", "/" %>