Start Theme Repo
This commit is contained in:
11
views/pieces/submissions/fields/platform.twig
Normal file
11
views/pieces/submissions/fields/platform.twig
Normal file
@@ -0,0 +1,11 @@
|
||||
<label for="platform">
|
||||
{{ __( "Platform:", 'romhackplaza' ) }}
|
||||
</label>
|
||||
<select id="platform" name="platform" class="custom-select" required>
|
||||
<option value="" disabled selected>{{ __( "Select a platform", 'romhackplaza' ) }}
|
||||
{% for term in terms_platform %}
|
||||
<option value="{{ term.id|esc_attr }}" {% if term.id == value_platform_id %}selected{% endif %}>
|
||||
{{ term.name|esc_html }}
|
||||
</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
Reference in New Issue
Block a user