Menu Item Attribute

This commit is contained in:
Nweni
2017-04-20 19:22:30 +06:30
parent d60ee09ff2
commit 037eb1f0f2
6 changed files with 93 additions and 61 deletions

View File

@@ -1,4 +1,4 @@
<%= simple_form_for([:settings, @settings_menu_item]) do |f| %>
<%= simple_form_for([:settings, @settings_menu_item_attribute]) do |f| %>
<%= f.error_notification %>
<div class="form-inputs">

View File

@@ -1,6 +1,11 @@
<h1>Editing Settings Menu Item Attribute</h1>
<%= render 'form', settings_menu_item_attribute: @settings_menu_item_attribute %>
<%= link_to 'Show', @settings_menu_item_attribute %> |
<%= link_to 'Back', settings_menu_item_attributes_path %>
<div class="span12">
<div class="page-header">
<ul class="breadcrumb">
<li><a href="<%= root_path %>">Home</a></li>
<li><a href="<%= settings_menu_item_attributes_path %>">Menu Item Attribute</a></li>
<li>Edit</li>
</ul>
</div>
<%= render 'form', employee: @employee %>
</div>

View File

@@ -1,31 +1,35 @@
<p id="notice"><%= notice %></p>
<h1>Settings Menu Item Attributes</h1>
<table>
<thead>
<tr>
<th>Attribute type</th>
<th>Name</th>
<th>Value</th>
<th colspan="3"></th>
</tr>
</thead>
<tbody>
<% @settings_menu_item_attributes.each do |settings_menu_item_attribute| %>
<tr>
<td><%= settings_menu_item_attribute.attribute_type %></td>
<td><%= settings_menu_item_attribute.name %></td>
<td><%= settings_menu_item_attribute.value %></td>
<td><%= link_to 'Show', settings_menu_item_attribute %></td>
<td><%= link_to 'Edit', edit_settings_menu_item_attribute_path(settings_menu_item_attribute) %></td>
<td><%= link_to 'Destroy', settings_menu_item_attribute, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<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>
<%= link_to 'New Settings Menu Item Attribute', new_settings_menu_item_attribute_path %>
<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>

View File

@@ -1,5 +1,11 @@
<h1>New Settings Menu Item Attribute</h1>
<%= render 'form', settings_menu_item_attribute: @settings_menu_item_attribute %>
<%= link_to 'Back', settings_menu_item_attributes_path %>
<div class="span12">
<div class="page-header">
<ul class="breadcrumb">
<li><a href="<%= root_path %>">Home</a></li>
<li><a href="<%= settings_menu_item_attributes_path %>">Menu Item Attribute</a></li>
<li>New</li>
</ul>
</div>
<%= render 'form', settings_menu_item_attribute: @settings_menu_item_attribute %>
</div>

View File

@@ -1,19 +1,36 @@
<p id="notice"><%= notice %></p>
<p>
<strong>Attribute type:</strong>
<%= @settings_menu_item_attribute.attribute_type %>
</p>
<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>
<p>
<strong>Name:</strong>
<%= @settings_menu_item_attribute.name %>
</p>
<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>
<p>
<strong>Value:</strong>
<%= @settings_menu_item_attribute.value %>
</p>
<%= link_to 'Edit', edit_settings_menu_item_attribute_path(@settings_menu_item_attribute) %> |
<%= link_to 'Back', settings_menu_item_attributes_path %>
</div>