Sha256: 34a30f913007374505388614ccf4a06f95d0544d28dd66b1afde8f79ba2d8136
Contents?: true
Size: 1.69 KB
Versions: 1
Compression:
Stored size: 1.69 KB
Contents
<% content_for :page_title, curation_concern_page_title(curation_concern) %> <% content_for :page_header do %> <h1><%= curation_concern %> <span class="human_readable_type">(<%= curation_concern.human_readable_type %>)</span></h1> <% end %> <%= render partial: 'representative_media', locals: {work: curation_concern} %> <%= render 'attributes', curation_concern: curation_concern %> <%= render 'related_files', curation_concern: curation_concern %> <%= render 'related_resources', curation_concern: curation_concern %> <%= render 'collections', curation_concern: curation_concern %> <% collector = can?(:collect, curation_concern) %> <% editor = can?(:edit, curation_concern) %> <% if collector || editor %> <% content_for :second_row do %> <div class="form-actions"> <% if editor %> <%= link_to "Edit This #{curation_concern.human_readable_type}", edit_polymorphic_path([:curation_concern, curation_concern]), class: 'btn btn-primary' %> <%= link_to "Delete This #{curation_concern.human_readable_type}", [:curation_concern, curation_concern], class: 'btn btn-primary', data: { confirm: "Delete this #{curation_concern.human_readable_type}?" }, method: :delete %> <%= link_to "Attach a File", new_curation_concern_generic_file_path(curation_concern), class: 'btn btn-primary' %> <%= link_to "Add an External Link", new_curation_concern_linked_resource_path(curation_concern), class: 'btn btn-primary' %> <% end %> <% if collector %> <%= render 'curate/collections/add_to_collection_modal', collectible: curation_concern %> <%= link_to_select_collection curation_concern, class: 'btn btn-primary' %> <% end %> </div> <% end %> <% end %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
worthwhile-0.0.1 | app/views/curation_concern/base/show.html.erb |