Commit 4a0f47d8 by Vedran Karačić Committed by GitHub

Merge pull request #881 from edx/vkaracic/SOL-1908

Set an upper limit of number of coupon codes to 1000.
parents 3e230d70 13129458
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
<div class="form-group"> <div class="form-group">
<label for="quantity"><%= gettext('Number of Codes') %> *</label> <label for="quantity"><%= gettext('Number of Codes') %> *</label>
<input id="quantity" type="number" step="1" class="form-control non-editable" name="quantity" value="1" min="1"> <input id="quantity" type="number" step="1" class="form-control non-editable" name="quantity" value="1" min="1" max="1000">
<p class="help-block"></p> <p class="help-block"></p>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment