Sha256: 71c8f534f9768c750bdac3026292467f761dbbca10795dda8266c2a1a0089a10
Contents?: true
Size: 771 Bytes
Versions: 13
Compression:
Stored size: 771 Bytes
Contents
<%= render 'spotlight/shared/curation_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
13 entries across 13 versions & 1 rubygems