noesya/osuny

View on GitHub
app/views/admin/communication/blocks/components/organization/_edit.html.erb

Summary

Maintainability
Test Coverage
<%
organizations = osuny_collection(
  current_university.organizations,
  localized: true
)
%>
<% unless label.blank? %>
  <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 %>">
  <option value="" :selected="true">
    <%= t "#{i18n_component}.unregistered" %>
  </option>
  <% organizations.each do |organization| %>
    <option value="<%= organization.last %>">
      <%= organization.first %>
    </option>
  <% end %>
</select>