update Setting all layout

This commit is contained in:
Aung Myo
2017-10-12 15:20:48 +06:30
parent 9365e64066
commit 535fe17d81
39 changed files with 914 additions and 530 deletions

View File

@@ -1,19 +1,33 @@
<p id="notice"><%= notice %></p>
<div class="page-header">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="<%= dashboard_path %>">Home</a></li>
<li class="breadcrumb-item"><a href="<%= settings_lookups_path %>">Lookups</a></li>
<li class="breadcrumb-item active">Details</li>
<span class="float-right">
<%= link_to 'Back', settings_lookups_path %>
</span>
</ol>
</div>
<br>
<div class="col-md-6">
<table class="table">
<p>
<strong>Lookup type:</strong>
<%= @settings_lookup.lookup_type %>
</p>
<tbody>
<tr>
<td><strong>Lookup type:</strong></td>
<td><%= @settings_lookup.lookup_type %></td>
</tr>
<tr>
<td><strong>Name:</strong></td>
<td><%= @settings_lookup.name %></td>
</tr>
<tr>
<td><strong>Value:</strong></td>
<td> <%= @settings_lookup.value %></td>
</tr>
<p>
<strong>Name:</strong>
<%= @settings_lookup.name %>
</p>
</tbody>
</table>
</div>
<p>
<strong>Value:</strong>
<%= @settings_lookup.value %>
</p>
<%= link_to 'Edit', edit_settings_lookup_path(@settings_lookup) %> |
<%= link_to 'Back', settings_lookups_path %>