Skip to content

Commit

Permalink
#111 remove input for the applied for each ticket
Browse files Browse the repository at this point in the history
  • Loading branch information
syjer committed May 25, 2017
1 parent 553a5a7 commit 09cd5c0
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,16 @@
</div>
<div class="col-sm-2 text-align-center">
{{#saleable}}
<input name="additionalService[{{index}}].additionalServiceId" value="{{id}}" type="hidden">
{{#fixPrice}}
{{#mandatoryOneForTicket}}
{{#i18n}}show-event.mandatoryOneForTicket{{/i18n}}
{{/mandatoryOneForTicket}}
{{#unlimitedAmount}}
<input name="additionalService[{{index}}].additionalServiceId" value="{{id}}" type="hidden">
<input type="number" min="0" step="1" aria-labelledby="{{id}}-label" name="additionalService[{{index}}].quantity" class="form-control" placeholder="0" autocomplete="off">
{{/unlimitedAmount}}
{{#limitedAmount}}
<input name="additionalService[{{index}}].additionalServiceId" value="{{id}}" type="hidden">
<select {{#maxAmountPerTicket}}data-max-amount-per-ticket="{{maxQtyPerOrder}}"{{/maxAmountPerTicket}} aria-labelledby="{{id}}-label" name="additionalService[{{index}}].quantity" class="form-control text-align-center" placeholder="0" autocomplete="off">
{{#maxAmountPerTicket}}
<option value="0">0</option>
Expand All @@ -70,6 +71,7 @@
{{/limitedAmount}}
{{/fixPrice}}
{{^fixPrice}}
<input name="additionalService[{{index}}].additionalServiceId" value="{{id}}" type="hidden">
<input type="number" min="0" step="any" name="additionalService[{{index}}].amount" class="form-control" title="">
{{/fixPrice}}
{{/saleable}}
Expand Down

0 comments on commit 09cd5c0

Please sign in to comment.