Sha256: ff92f7b0ed3d5fe4ba2c5ad499dc8b05353cbf0c006637ba707327e9fb11d97c

Contents?: true

Size: 776 Bytes

Versions: 6

Compression:

Stored size: 776 Bytes

Contents

    <h2><%= t('.header') %></h2>
    <% collection_presenters = presenter.collection_presenters %>
    <% if collection_presenters.blank? %>
        <p><%= t('.empty', type: presenter.human_readable_type) %></p>
    <% else %>
      <table class="table table-striped relationships">
        <tbody>
        <tr>
          <th><%= t('.collections', type: presenter.human_readable_type) %></th>
          <td>
            <% collection_presenters.each do |collection| %>
              <ul class="tabular">
                <li class='attribute title'>
                  <%= link_to collection.to_s, main_app.collection_path(collection) %>
                </li>
              </ul>
            <% end %>
          </td>
        </tr>
        </tbody>
      </table>
    <% end %>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
sufia-7.0.0 app/views/curation_concerns/base/_relationships.html.erb
sufia-7.0.0.rc2 app/views/curation_concerns/base/_relationships.html.erb
sufia-7.0.0.rc1 app/views/curation_concerns/base/_relationships.html.erb
sufia-7.0.0.beta4 app/views/curation_concerns/base/_relationships.html.erb
sufia-7.0.0.beta3 app/views/curation_concerns/base/_relationships.html.erb
sufia-7.0.0.beta2 app/views/curation_concerns/base/_relationships.html.erb