tap/app/views/order_products/_total_price.html.erb

9 lines
297 B
Text
Raw Normal View History

2014-12-09 09:43:21 +01:00
<%= f.label :total_price %>
2014-12-10 00:45:49 +01:00
<div class="input-group">
<span class="input-group-addon">&euro;</span>
2014-12-10 01:03:22 +01:00
<%= f.number_field :total_price, step: :any, class: 'form-control input-lg' %>
2014-12-10 00:45:49 +01:00
<span class="input-group-btn">
2014-12-10 01:03:22 +01:00
<%= f.submit "Order!", class: "btn btn-primary input-lg" %>
2014-12-10 00:45:49 +01:00
</span>
</div>