Sha256: ebb09b70858a00fae44bcc721e3ffdc82085d3da61891b126174f5b3bbe9cccf
Contents?: true
Size: 566 Bytes
Versions: 46
Compression:
Stored size: 566 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 |s| %> <tr> <td><%= s.description %></td> <td class="text-right"> <%= link_to_edit_translation [:backend, s] %> </td> </tr> <% end %> </tbody> </table> <% else %> <p><%= t 'b.msg.no_items' %></p> <% end %>
Version data entries
46 entries across 46 versions & 1 rubygems