summaryrefslogtreecommitdiffstats
path: root/templates/products/entry.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/products/entry.html')
-rw-r--r--templates/products/entry.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/products/entry.html b/templates/products/entry.html
index 2b3969a..ffb0dcf 100644
--- a/templates/products/entry.html
+++ b/templates/products/entry.html
@@ -15,8 +15,8 @@
<div id="new_price" style="display: {{{ISADMIN}}};">
<form action="/products/{{{EAN}}}/newprice" class="form-horizontal">
- <input class="input-small" name="member" type="number" min="1" placeholder="Member" />
- <input class="input-small" name="guest" type="number" min="1" placeholder="Guest" />
+ <input class="input-small" name="member" type="number" step="0.01" min="0.01" placeholder="Member" />
+ <input class="input-small" name="guest" type="number" step="0.01" min="0.01" placeholder="Guest" />
<button type="submit" class="btn btn-primary">Add new Prices</button>
</form>
</div>
@@ -30,7 +30,7 @@
<div id="restock" style="display: {{{ISADMIN}}};">
<form action="/products/{{{EAN}}}/restock" class="form-horizontal">
<input class="input-small" name="amount" type="number" min="1" placeholder="Amount" />
- <input class="input-small" name="price" type="number" min="1" placeholder="Price" />
+ <input class="input-small" name="price" type="number" step="0.01" min="0.01" placeholder="Price" />
<button type="submit" class="btn btn-primary"><i class="icon-plus"></i></button>
</form>
</div>