50 lines
1.2 KiB
Plaintext
50 lines
1.2 KiB
Plaintext
<div class="row">
|
|
<div class="col-lg-12">
|
|
<ol class="breadcrumb">
|
|
<li><a href="<%= crm_root_path %>">Home</a></li>
|
|
<li class="active">
|
|
<a href="<%= transactions_sales_path %>">Sale</a>
|
|
</li>
|
|
<li class="active">
|
|
<a href="<%= transactions_sale_path(@sale) %>"><%= @sale %></a>
|
|
</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
|
|
<div class="col-lg-10 col-md-10 col-sm-10">
|
|
<div class="tab-pane active" id="queue" role="tabpanel" style="min-height:670px; max-height:670px; overflow-y:">
|
|
<h3>Choose your reason</h3>
|
|
<table>
|
|
<% @reason.each do |r| %>
|
|
<tr>
|
|
<td>
|
|
<%= check_box_tag "reason", "#{r.name}" rescue '-' %>
|
|
</td>
|
|
|
|
<td><%= label_tag "reasons[#{r.id}]", r.name, :style=>'font-weight:bold;font-size:18px;' rescue '-' %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-2 col-md-2 col-sm-2">
|
|
<a href="<%= transactions_sale_path(@sale)%>" style="margin-top: 10px " class="btn btn-primary pull-right btn-lg"><i class="fa fa-arrow-left fa-lg"></i> Back
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
<style>
|
|
input[type='checkbox'] {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|