9 lines
419 B
Twig
9 lines
419 B
Twig
<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> |