Sha256: ab1629f7e820d472a899a28151ecfc8952d1d4b2bf7c4e65473a59b9f60118a5
Contents?: true
Size: 1.42 KB
Versions: 6
Compression:
Stored size: 1.42 KB
Contents
<%= content_for :html_head do %> <%= stylesheet_link_tag "cms/content_library" %> <%= javascript_tag do %> jQuery(function($){ $('#block_content .header').html("Content tagged with '<%= escape_javascript(h(@content_block.name)) %>'") }) <% end %> <% end %> <div class="pad"> <div class="roundedcorners"> <table class="data"> <thead> <tr> <th class="name first" colspan="2"> <div class="dividers"> Name </div> </th> <th class="last" colspan="2"> <div class="dividers"> Type </div> </th> </tr> </thead> <tbody> <% for tg in @taggings %> <tr> <td class="first"></td> <td class="name"> <div class="dividers"> <%= link_to h(tg.taggable.name), tg.taggable %> </div> </td> <td class="name"> <div class="dividers"> <%=h tg.taggable.display_name %> </div> </td> <td class="last"></td> </tr> <% end %> </tbody> </table> <div class="tl"></div> <div class="tr"></div> <div class="bl"></div> <div class="br"></div> </div> </div> <% if @taggings.total_pages > 1 %> <%= render_pagination @taggings, :tag, {:id => @content_block} %> <% end %>
Version data entries
6 entries across 6 versions & 1 rubygems