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