summaryrefslogtreecommitdiff
path: root/app/views/admin/conventions.html.erb
blob: 434c2e9cb69071f37b9333f049024da22f073dff (plain)
1
2
3
4
5
6
7
8
9
10
11
<h1><%= t(".title") %></h1>

<table id="conventions">
  <tr><th><%= t(".kind") %></th><th><%= t(".what_happens") %></th></tr>
  <% @node_kinds.each do |kind, config| %>
    <tr>
      <td><%= kind %></td>
      <td><%= resolve_kind_text(config[:label]) %> — <%= resolve_kind_text(config[:hint]) %></td>
    </tr>
  <% end %>
</table>