Skip to content
Snippets Groups Projects

Multicurrency

Merged mikrats requested to merge multicurrency into main
11 files
+ 440
14
Compare changes
  • Side-by-side
  • Inline
Files
11
@@ -26,6 +26,13 @@
<label for="sPrice" class="form-label">Starting price</label>
<input type="number" class="form-control" id="sPrice" name="sPrice" min="0" max="100000000">
</div>
<div class="mb-3">
<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">
<label for="image" class="form-label">Image (Please add image in .jpg format)</label>
<input type="file" class="form-control" id="image" name="image">
Loading