Sha256: e7933084c013f14309c1c5ab8a0d5a0de14c6534eb8d8d57c31fb7d48efedc0c

Contents?: true

Size: 1.1 KB

Versions: 10

Compression:

Stored size: 1.1 KB

Contents

<%- if @document.persisted? %>
<h3 id="multiple-download-links"><%= link_to "Multiple Download Links", admin_document_document_downloads_url(@document) %></h3>
<div class="table-responsive">
  <table class="table table-striped table-bordered">
    <thead>
      <tr>
        <th colspan="2">Actions</th>
        <th>Layer Slug</th>
        <th>Download Label</th>
        <th>Download URL</th>
      </tr>
    </thead>

    <tbody>
      <% @document.document_downloads.each do |document_download| %>
        <tr>
          <td><%= link_to 'Edit', edit_admin_document_document_download_path(document_download.document, document_download) %></td>
          <td><%= link_to 'Destroy', admin_document_document_download_path(document_download.document, document_download), method: :delete, data: { confirm: 'Are you sure?' } %></td>
          <td><%= link_to document_download.friendlier_id, admin_document_path(document_download.document) %></td>
          <td><%= document_download.label %></td>
          <td><%= link_to document_download.value %></td>
        </tr>
      <% end %>
    </tbody>
  </table>
</div>
<% end %>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
geoblacklight_admin-0.5.1 app/views/admin/documents/features/_multiple_download_links.html.erb
geoblacklight_admin-0.5.0 app/views/admin/documents/features/_multiple_download_links.html.erb
geoblacklight_admin-0.4.2 app/views/admin/documents/features/_multiple_download_links.html.erb
geoblacklight_admin-0.4.1 app/views/admin/documents/features/_multiple_download_links.html.erb
geoblacklight_admin-0.4.0 app/views/admin/documents/features/_multiple_download_links.html.erb
geoblacklight_admin-0.3.2 app/views/admin/documents/features/_multiple_download_links.html.erb
geoblacklight_admin-0.3.1 app/views/admin/documents/features/_multiple_download_links.html.erb
geoblacklight_admin-0.3.0 app/views/admin/documents/features/_multiple_download_links.html.erb
geoblacklight_admin-0.2.1 app/views/admin/documents/features/_multiple_download_links.html.erb
geoblacklight_admin-0.1.0 app/views/admin/documents/features/_multiple_download_links.html.erb