Sha256: eae96edf4a621363652fbe42ce9b14e380d3eb3d4f137efc90c83214c0b238ac
Contents?: true
Size: 955 Bytes
Versions: 16
Compression:
Stored size: 955 Bytes
Contents
<% toolbar = capture do %> <%= link_to icons(:new), new_admin_cms_snippet_path, title: 'New Snippet', class: 'btn btn-link btn-icon' %> <% end %> <%= panel title: 'List of Snippets', body: false, toolbar: toolbar do %> <table class="table table-striped table-bordered"> <thead> <tr> <th>Name</th> <th>Description</th> <th width="50">Type</th> <th width="50">Status</th> </tr> </thead> <tbody> <% @cms_snippets.each do |cms_snippet| %> <% present cms_snippet do |snippet_presenter| %> <tr class="item"> <td> <%= link_to cms_snippet.slug, edit_admin_cms_snippet_path(cms_snippet) %> </td> <td><%= cms_snippet.description %></td> <td><%= cms_snippet.itemtype %></td> <td><%= snippet_presenter.label_published %></td> </tr> <% end %> <% end %> </tbody> </table> <% end %>
Version data entries
16 entries across 16 versions & 1 rubygems