Files

9 lines
419 B
Twig
Raw Permalink Normal View History

2026-01-29 19:10:03 +01:00
<fieldset>
<legend>{{ __( "Status:", 'romhackplaza' ) }}</legend>
{% for term in terms_status %}
<div class="status-option">
<input type="radio" id="complete" name="hack-status" value="{{ term.id }}" {% if term.id in value_terms_status %}checked{% endif %} required>
<label for="complete">{{ __( term.title, 'romhackplaza' ) }}</label>
</div>
{% endfor %}
</fieldset>