app/views/admin/communication/blocks/components/program/_edit.html.erb
<% programs = @block.template.available_programs %>
<% if label.present? %>
<label class="form-label"
:for="<%= dom_id.html_safe %>">
<%= label %>
</label>
<% end %>
<select :id="<%= dom_id.html_safe %>"
class="form-select select mb-3"
v-model="<%= model %>.<%= property %>">
<% if placeholder %>
<option value="" disabled><%= placeholder %></option>
<% end %>
<% programs.each do |program| %>
<option value="<%= program.id %>">
<%= program.to_s_in(block.language) %>
</option>
<% end %>
</select>