Sha256: a5e69a8ceb01797b639d0539034eb05765023db48dbc354b5f538031717a5130
Contents?: true
Size: 751 Bytes
Versions: 75
Compression:
Stored size: 751 Bytes
Contents
<%= render 'spotlight/shared/exhibit_sidebar' %> <div id="content" class="col-md-9"> <%= curation_page_title t(:".header") %> <% 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
75 entries across 75 versions & 1 rubygems