17 lines
285 B
Plaintext
17 lines
285 B
Plaintext
|
|
<%= simple_form_for([:crm,@dining_queue]) do |f| %>
|
|
<%= f.error_notification %>
|
|
|
|
<div class="form-inputs">
|
|
<%= f.input :name %>
|
|
<%= f.input :contact_no %>
|
|
<%= f.input :queue_no %>
|
|
|
|
</div>
|
|
|
|
<div class="form-actions">
|
|
<%= f.button :submit %>
|
|
</div>
|
|
<% end %>
|
|
|