summaryrefslogtreecommitdiffstats
path: root/templates/products/index.html
diff options
context:
space:
mode:
authorSebastian Reichel <sre@ring0.de>2012-11-04 09:54:31 +0100
committerSebastian Reichel <sre@ring0.de>2012-11-04 09:54:31 +0100
commit4d8b321665378d82f3fd6e29e11f45ac25c79d83 (patch)
tree7750fb852a17b3f332c3b249de5ceae372e18d7f /templates/products/index.html
parent25f1132d4f004211adf39e3f373ec0498c0d0fc7 (diff)
downloadserial-barcode-scanner-4d8b321665378d82f3fd6e29e11f45ac25c79d83.tar.bz2
support € values in the template
Diffstat (limited to 'templates/products/index.html')
-rw-r--r--templates/products/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/products/index.html b/templates/products/index.html
index bd4e0e9..0035f7e 100644
--- a/templates/products/index.html
+++ b/templates/products/index.html
@@ -12,8 +12,8 @@
<legend>New Product</legend>
<input class="input-medium" name="id" type="number" min="0" placeholder="EAN" />
<input class="input-medium" name="name" type="text" placeholder="Name" />
- <input class="input-medium" name="memberprice" type="number" placeholder="Memberprice" />
- <input class="input-medium" name="guestprice" type="number" placeholder="Guestprice" />
+ <input class="input-medium" name="memberprice" type="number" step="0.01" min="0.01" placeholder="Memberprice" />
+ <input class="input-medium" name="guestprice" type="number" step="0.01" min="0.01" placeholder="Guestprice" />
<button type="submit" class="btn btn-primary"><i class="icon-plus"></i></button>
</form>
</div>