Sha256: 0eb0a21d3474cdb2692073252c3208e546757439fcc47058a6fa6879a48ce82a
Contents?: true
Size: 557 Bytes
Versions: 25
Compression:
Stored size: 557 Bytes
Contents
<%= render 'backend/breadcrumbs' %> <% if @snippets.any? %> <table class="table table-striped table-hover"> <thead class="thead-inverse"> <tr> <th><%= t 'b.description' %></th> <th> </th> </tr> </thead> <tbody> <% @snippets.each do |a| %> <tr> <td><%= a.description %></td> <td class="text-xs-right"> <%= link_to_edit [:backend, a] %> </td> </tr> <% end %> </tbody> </table> <% else %> <p><%= t 'b.msg.no_items' %></p> <% end %>
Version data entries
25 entries across 25 versions & 1 rubygems