Files
nairobi/app/components/sdg_management/goals/index_component.html.erb
2020-12-02 12:38:03 +01:00

26 lines
551 B
Plaintext

<% provide(:title) do %>
<%= t("sdg_management.header.title") %> - <%= title %>
<% end %>
<h2><%= title %></h2>
<table>
<thead>
<tr>
<th><%= attribute_name(:code) %></th>
<th><%= attribute_name(:title) %></th>
<th><%= attribute_name(:description) %></th>
</tr>
</thead>
<tbody>
<% goals.each do |goal| %>
<tr id="<%= dom_id(goal) %>" class="goal">
<td><%= goal.code %></td>
<td><%= goal.title %></td>
<td><%= goal.description %></td>
</tr>
<% end %>
</tbody>
</table>