Set 'UNREVIEWED' as the default selected option in review status dropdown
This commit is contained in:
@@ -31,7 +31,7 @@
|
|||||||
<label for="id_status" class="form-label">Review status</label>
|
<label for="id_status" class="form-label">Review status</label>
|
||||||
<select name="status" id="id_status" class="form-select">
|
<select name="status" id="id_status" class="form-select">
|
||||||
{% for code,label in status_options %}
|
{% for code,label in status_options %}
|
||||||
<option value="{{ code }}">{{ label }}</option>
|
<option value="{{ code }}" {% if code == 'UNREVIEWED' %}selected{% endif %}>{{ label }}</option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user