Sha256: 489c0f8205d0575b0b981d8961ee839f447b6fdbdc21a80bf0bad44380525ca4

Contents?: true

Size: 1.66 KB

Versions: 8

Compression:

Stored size: 1.66 KB

Contents

<div class="btn-group">

  <button class="btn btn-sm dropdown-toggle" data-toggle="dropdown" type="button" id="dropdownMenu_<%= document.id %>" aria-haspopup="true">
    <span class="sr-only">Press to </span>
    Select an action
    <span class="caret" aria-hidden="true"></span>
  </button>

  <ul role="menu" class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownMenu_<%= document.id %>">

    <li role="menuitem" tabindex="-1">
      <%= button_for_remove_from_collection(@collection, document, label: 'Remove from Collection') %>
    </li>

    <li role="menuitem" tabindex="-1">
      <%= link_to [main_app, :edit, document] do %>
        <i class="glyphicon glyphicon-pencil" aria-hidden="true"></i>
        <span> Edit Work </span>
      <% end %>
    </li>

    <li role="menuitem" tabindex="-1">
      <%= link_to [main_app, document], method: :delete, data: { confirm: "Deleting a work from #{application_name} is permanent. Click OK to delete this work from #{application_name}, or Cancel to cancel this operation" } do %>
        <i class="glyphicon glyphicon-trash" aria-hidden="true"></i>
        <span>Delete Work</span>
      <% end %>
    </li>

    <li role="menuitem" tabindex="-1">
      <%= display_trophy_link @user, document.id do |text| %>
        <i class='glyphicon glyphicon-star'></i> <%= text %>
      <% end %>
    </li>
    <li role="menuitem" tabindex="-1">
      <%= link_to(hyrax.new_work_transfer_path(document.id), class: 'itemicon itemtransfer', title: 'Transfer Ownership of Work') do %>
        <i aria-hidden="true" class='glyphicon glyphicon-transfer'></i>
        <span> Transfer Ownership of Work </span>
      <% end %>
    </li>
  </ul>
</div>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
hyrax-2.2.0 app/views/hyrax/dashboard/collections/_work_action_menu.html.erb
hyrax-2.1.0 app/views/hyrax/dashboard/collections/_work_action_menu.html.erb
hyrax-2.1.0.rc4 app/views/hyrax/dashboard/collections/_work_action_menu.html.erb
hyrax-2.1.0.rc3 app/views/hyrax/dashboard/collections/_work_action_menu.html.erb
hyrax-2.1.0.rc2 app/views/hyrax/dashboard/collections/_work_action_menu.html.erb
hyrax-2.1.0.rc1 app/views/hyrax/dashboard/collections/_work_action_menu.html.erb
hyrax-2.1.0.beta2 app/views/hyrax/dashboard/collections/_work_action_menu.html.erb
hyrax-2.1.0.beta1 app/views/hyrax/dashboard/collections/_work_action_menu.html.erb