Sha256: 8cf092f89d525ce5342851bd13edfb15a8e0ba5b3f14679dbe57b2fc9d7b5a05

Contents?: true

Size: 1.91 KB

Versions: 36

Compression:

Stored size: 1.91 KB

Contents

<% if assets_with_expired_leases.blank? %>
  <table class="leases table">
    <thead>
      <tr>
        <%= render partial: 'table_headers' %>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td colspan="5" class="text-center">
          <p><%= t('.missing') %></p>
        </td>
      </tr>
    </tbody>
  </table>

<% else %>

  <%= form_tag leases_path, method: :patch do %>
    <%= submit_tag t('.deactivate_selected'), class: 'btn btn-primary' %>
    <table class="leases table">
      <thead>
        <tr>
          <th></th>
          <%= render partial: 'table_headers' %>
          <th></th>
        </tr>
      </thead>
      <tbody>
      <% assets_with_expired_leases.each_with_index do |curation_concern, i| %>
        <tr>
          <td><%= render 'hyrax/batch_select/add_button', document: curation_concern %></td>
          <td class="human-readable-type"><%= curation_concern.human_readable_type %></td>
          <td class="title"><%= link_to curation_concern, edit_lease_path(curation_concern) %></td>
          <td class="current-visibility"><%= visibility_badge(curation_concern.visibility) %></td>
          <td class="lease-release-date"><%= curation_concern.lease_expiration_date %></td>
          <td class="visibility-after-lease"><%= visibility_badge(curation_concern.visibility_after_lease) %></td>
          <td class="actions"><%= link_to t('.deactivate'), lease_path(curation_concern), method: :delete, class: 'btn btn-primary' %></td>
        </tr>
        <tr data-behavior="extra" data-id="<%= curation_concern.id %>" class="extra-lease-info">
          <td></td>
          <td colspan=5>
            <%= check_box_tag "leases[#{i}][copy_visibility]", curation_concern.id, true %>
            <%= t('.change_all', cc: curation_concern) %>
            <%= visibility_badge(curation_concern.visibility_after_lease) %>?
          </td>
        </tr>
      <% end %>
      </tbody>
    </table>
  <% end %>

<% end %>

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
hyrax-2.9.6 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-2.9.5 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-2.9.4 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-2.9.3 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-2.9.2 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-2.9.1 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-2.9.0 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-3.0.0.pre.rc2 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-2.8.0 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-2.7.2 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-2.7.1 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-2.7.0 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-2.6.0 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-3.0.0.pre.rc1 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-3.0.0.pre.beta3 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-2.5.1 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-2.5.0 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-3.0.0.pre.beta2 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-2.4.1 app/views/hyrax/leases/_list_expired_active_leases.html.erb
hyrax-3.0.0.pre.beta1 app/views/hyrax/leases/_list_expired_active_leases.html.erb