Sha256: 7a09ec166fbf11bb0cdce1d2cda30d28fcd574e21377f9bfa4ff0c8411efc464

Contents?: true

Size: 1.25 KB

Versions: 11

Compression:

Stored size: 1.25 KB

Contents

<table class="table table-striped" id="outgoing-transfers">
  <thead>
    <tr>
      <th>Title</th>
      <th>Date</th>
      <th>To</th>
      <th>Status</th>
      <th>Comments</th>
    </tr>
  </thead>
  <tbody>
    <% outgoing_proxy_deposits.each do |req| %>
      <% unless req.receiving_user.blank? %>
        <tr>
          <td> <%= show_transfer_request_title(req) %> </td>
          <td>
            <relative-time datetime="<%= req.created_at.getutc.iso8601 %>" title="<%= req.created_at.to_formatted_s(:standard) %>">
              <%= req.created_at.to_formatted_s(:long_ordinal) %>
            </relative-time>
          </td>

          <td><%= link_to req.receiving_user.name, hyrax.user_path(req.receiving_user)  %></td>

          <td>
            <% if req.pending? %>
              <%= button_to "Cancel", hyrax.transfer_path(req), method: :delete, class:'btn btn-sm btn-danger', data: {confirm: "Are you sure you want to cancel this request?"} %>
            <% else %>
              <%= req.status.capitalize %>
            <% end %>
          </td>

          <td><%= req.sender_comment %></td>
        </tr>
      <% else %>
          <% Rails.logger.error "A proxy request has no receiver: #{req.inspect}" %>
      <% end %>
    <% end %>
  </tbody>
</table>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
hyrax-2.1.0.beta1 app/views/hyrax/transfers/_sent.html.erb
hyrax-2.0.1 app/views/hyrax/transfers/_sent.html.erb
hyrax-2.0.0 app/views/hyrax/transfers/_sent.html.erb
hyrax-2.0.0.rc3 app/views/hyrax/transfers/_sent.html.erb
hyrax-2.0.0.rc2 app/views/hyrax/transfers/_sent.html.erb
hyrax-2.0.0.rc1 app/views/hyrax/transfers/_sent.html.erb
hyrax-2.0.0.beta5 app/views/hyrax/transfers/_sent.html.erb
hyrax-2.0.0.beta4 app/views/hyrax/transfers/_sent.html.erb
hyrax-2.0.0.beta3 app/views/hyrax/transfers/_sent.html.erb
hyrax-2.0.0.beta2 app/views/hyrax/transfers/_sent.html.erb
hyrax-2.0.0.beta1 app/views/hyrax/transfers/_sent.html.erb