Files
robot-shop/web/static/shipping.html

23 lines
843 B
HTML
Raw Normal View History

2018-01-12 17:26:25 +00:00
<!-- shipping template -->
<div>
<h3>Shipping information</h3>
<div>
2018-01-19 17:24:49 +00:00
Select country <select ng-change="countryChanged();" ng-model="data.selectedCountry" ng-options="opt.name for opt in data.countries track by opt.code"></select>
2018-01-12 17:26:25 +00:00
</div>
<div>
2018-01-19 17:24:49 +00:00
Enter location <input id="location" type="text" size="20" ng-model="data.selectedLocation" ng-disabled="data.disableCity"/>
</div>
<div>
<button ng-click="calcShipping();" ng-disabled="data.disableCalc">Calculate</button>
</div>
<!-- add in shipping distance and cost -->
<div ng-if="data.shipping">
2018-01-25 17:05:28 +00:00
<div>Distance {{ data.shipping.distance }}km</div>
<div>Cost &euro;{{ data.shipping.cost.toFixed(2) }}</div>
2018-01-19 17:24:49 +00:00
<div>
<button ng-click="confirmShipping();">Confirm</button>
</div>
2018-01-12 17:26:25 +00:00
</div>
</div>