39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
|
|
|
|
<div class="page-header">
|
|
<ul class="breadcrumb">
|
|
<li><a href="<%= %>">Home</a></li>
|
|
<li>Queue</li>
|
|
<span style="float: right">
|
|
<%= link_to t('.new', :default => t("helpers.links.new")),new_crm_dining_queue_path,:class => 'btn btn-primary btn-sm' %>
|
|
</span>
|
|
</ul>
|
|
</div>
|
|
|
|
<br>
|
|
<div class="card">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th style="width:25%">Name</th>
|
|
<th style="width:25%">Contact No</th>
|
|
<th style="width:25%">Queue No</th>
|
|
<th style="width:25%">Action</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @dining_queues.each do |dining_queue| %>
|
|
<tr>
|
|
<td><%= dining_queue.name %></td>
|
|
<td><%= dining_queue.contact_no %></td>
|
|
<td><%= dining_queue.queue_no %></td>
|
|
<td>
|
|
<%= link_to 'Edit', edit_crm_dining_queue_path(dining_queue) %> | <%= link_to 'Destroy', crm_dining_queue_path(dining_queue), method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|