Files
sx-fc/app/views/settings/menu_item_attributes/show.html.erb
2017-04-20 19:22:30 +06:30

37 lines
936 B
Plaintext

<div class="page-header">
<ul class="breadcrumb">
<li><a href="<%= %>">Home</a></li>
<li>Settings</li>
<li>Menu Item Attribute</li>
<span style="float: right">
</span>
</ul>
</div>
<div class="card">
<div class="card-block">
<h4 class="card-title">Menu Item Attribute</h4>
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
<th>Created At</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td><%= @settings_menu_item_attribute.name %></td>
<td><%= @settings_menu_item_attribute.value rescue "-" %></td>
<td><%=l @settings_menu_item_attribute.created_at, format: :short %></td>
<td><%= link_to 'Edit', edit_settings_menu_item_attribute_path(@settings_menu_item_attribute, @settings_menu_item_attribute) %></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>