aboutsummaryrefslogtreecommitdiff
path: root/app/views/foreman_params_tab/hosts/_parameters.html.erb
blob: 8fb2b29d04e25c121484aab931edad80f91a0425 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<table class="<%= table_css_classes %>">

  <tr>
    <th>Parameter</th>
    <th>Value</th>
  </tr>
  <% @host.host_params_objects.each do |p| %>
  <tr>
    <td>
      <%= p.name %>
    </td>
    <td>
      <%= p.value %>
    </td>
  </tr>
  <% end %>
</table>