Set 'UNREVIEWED' as the default selected option in review status dropdown

This commit is contained in:
Ross
2025-10-27 14:21:09 +00:00
parent 690cabe30c
commit 1f2a25c3ad
@@ -31,7 +31,7 @@
<label for="id_status" class="form-label">Review status</label>
<select name="status" id="id_status" class="form-select">
{% for code,label in status_options %}
<option value="{{ code }}">{{ label }}</option>
<option value="{{ code }}" {% if code == 'UNREVIEWED' %}selected{% endif %}>{{ label }}</option>
{% endfor %}
</select>
</div>