Sha256: 37fdadd524599d4134c8324f383e6ababe921e6f0a4859798d4acaa918036efa

Contents?: true

Size: 770 Bytes

Versions: 17

Compression:

Stored size: 770 Bytes

Contents

<%= render 'spotlight/shared/exhibit_sidebar' %>
<div id="content" class="col-md-9">
  <%= curation_page_title(header_with_count(@tags.length)) %>

  <% if @tags.empty? %>
    <p><%= t :'.no_tags' %></p>
  <% else %>
  <table class="table table-striped tags">
    <thead>
      <th><%= t '.name' %></th>
      <th><%= t '.taggings.count' %></th>
      <%# TODO last used? %>
      <th><%= t '.actions' %></th>
    </thead>
    <tbody>
    <% @tags.each do |tag| %>
      <tr>
        <td><%= link_to tag.name, url_to_tag_facet(tag.name) %></td>
        <td><%= tag.taggings.count %></td>
        <td><%= delete_link(tag, exhibit_tag_path(current_exhibit, tag), class: 'btn btn-danger btn-xs') %></td>
      </tr>
    <% end %>
    </tbody>
  </table>
  <% end %>
</div>

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
blacklight-spotlight-0.17.0 app/views/spotlight/tags/index.html.erb
blacklight-spotlight-0.16.0 app/views/spotlight/tags/index.html.erb
blacklight-spotlight-0.15.0 app/views/spotlight/tags/index.html.erb
blacklight-spotlight-0.14.2 app/views/spotlight/tags/index.html.erb
blacklight-spotlight-0.14.1 app/views/spotlight/tags/index.html.erb
blacklight-spotlight-0.14.0 app/views/spotlight/tags/index.html.erb
blacklight-spotlight-0.13.0 app/views/spotlight/tags/index.html.erb
blacklight-spotlight-0.12.1 app/views/spotlight/tags/index.html.erb
blacklight-spotlight-0.12.0 app/views/spotlight/tags/index.html.erb
blacklight-spotlight-0.11.0 app/views/spotlight/tags/index.html.erb
blacklight-spotlight-0.10.3 app/views/spotlight/tags/index.html.erb
blacklight-spotlight-0.10.2 app/views/spotlight/tags/index.html.erb
blacklight-spotlight-0.10.1 app/views/spotlight/tags/index.html.erb
blacklight-spotlight-0.10.0 app/views/spotlight/tags/index.html.erb
blacklight-spotlight-0.9.2 app/views/spotlight/tags/index.html.erb
blacklight-spotlight-0.9.1 app/views/spotlight/tags/index.html.erb
blacklight-spotlight-0.9.0 app/views/spotlight/tags/index.html.erb