Files
sx-fc/app/views/settings/lookups/index.html.erb
2017-06-23 09:41:48 +06:30

32 lines
835 B
Plaintext

<p id="notice"><%= notice %></p>
<h1>Settings Lookups</h1>
<table>
<thead>
<tr>
<th>Lookup type</th>
<th>Name</th>
<th>Value</th>
<th colspan="3"></th>
</tr>
</thead>
<tbody>
<% @settings_lookups.each do |settings_lookup| %>
<tr>
<td><%= settings_lookup.lookup_type %></td>
<td><%= settings_lookup.name %></td>
<td><%= settings_lookup.value %></td>
<td><%= link_to 'Show', settings_lookup_path(settings_lookup) %></td>
<td><%= link_to 'Edit', edit_settings_lookup_path(settings_lookup) %></td>
<td><%= link_to 'Destroy', settings_lookup_path(settings_lookup), method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Settings Lookup', new_settings_lookup_path %>