LafayetteCollegeLibraries/spot

View on GitHub
app/views/hyrax/base/_form_metadata.html.erb

Summary

Maintainability
Test Coverage
        <div class="base-terms">
          <% f.object.primary_terms.each do |term| %>
            <%= render_edit_field_partial(term, f: f) %>
          <% end %>
        </div>
        <% if f.object.display_additional_fields? %>
          <%= link_to t('hyrax.works.form.additional_fields'),
                      '#extended-terms',
                      class: 'btn btn-default additional-fields',
                      data: { toggle: 'collapse' },
                      role: "button",
                      'aria-expanded'=> "false",
                      'aria-controls'=> "extended-terms" %>
          <div id="extended-terms" class='collapse'>
            <% f.object.secondary_terms.each do |term| %>
              <%= render_edit_field_partial(term, f: f) %>
            <% end %>
          </div>
        <% end %>