36 lines
1.2 KiB
Plaintext
36 lines
1.2 KiB
Plaintext
|
|
<div class="page-header">
|
|
<ul class="breadcrumb">
|
|
<li><a href="<%= %>">Home</a></li>
|
|
<li>Menu Item Attributes</li>
|
|
<span style="float: right">
|
|
<%= link_to t('.new', :default => t("helpers.links.new")),new_settings_menu_item_attribute_path,:class => 'btn btn-primary btn-sm' %>
|
|
</span>
|
|
</ul>
|
|
</div>
|
|
|
|
<br>
|
|
<div class="card">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Attribute type</th>
|
|
<th>Name</th>
|
|
<th>Value</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @settings_menu_item_attributes.each do |settings_menu_item_attribute| %>
|
|
<tr>
|
|
<td><%= link_to settings_menu_item_attribute.attribute_type, settings_menu_item_attribute_path(settings_menu_item_attribute) %></td>
|
|
<td><%= settings_menu_item_attribute.name %></td>
|
|
<td><%= settings_menu_item_attribute.value %></td>
|
|
<td><%= link_to 'Edit', edit_settings_menu_item_attribute_path(settings_menu_item_attribute) %>
|
|
| <%= link_to 'Destroy', settings_menu_item_attribute_path(settings_menu_item_attribute), method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|