Skip to content
Snippets Groups Projects

Multicurrency

Merged mikrats requested to merge multicurrency into main
11 files
+ 443
14
Compare changes
  • Side-by-side
  • Inline
Files
11
@@ -27,8 +27,18 @@
<input type="number" class="form-control" id="sPrice" name="sPrice" min="0" max="100000000">
</div>
<div class="mb-3">
<label for="currency" class="form-label">Currency</label>
<select name="currency" id="currency" class="form-control">
{% for code, name in currencies.items() %}
<option value="{{ code }}" {% if code == default_currency %}selected{% endif %}>{{ name }}</option>
{% endfor %}
</select>
</div>
<div class="mb-3">
</select>
<label for="closing" class="form-label">Duration of auction in hours and minutes</label>
<input type="time" id="duration" name="duration" step="60">
</select>
</div>
<div class="mb-3">
<label for="image" class="form-label">Image (Please add image in .jpg format)</label>
Loading