Sha256: 68a66006c7c3c46e7a0832c8d27c243d9b7963cfd5aaeb9455c6f042ec6b7864
Contents?: true
Size: 1.25 KB
Versions: 22
Compression:
Stored size: 1.25 KB
Contents
<div class="row"> <div class="small-12 columns"> <h1><%= @content.type.title %></h1> <%= link_to 'Back', contents_path, class: 'secondary button' %> </div> </div> <div class="row"> <div class="small-12 columns"> <table> <tr> <td><strong>Title</strong></td> <td><%= @content.title %></td> </tr> <tr> <td><strong>Slug</strong></td> <td><%= @content.slug %></td> </tr> <tr> <td><strong>Content</strong></td> <td><%= @content.content %></td> </tr> <tr> <td><strong>Type</strong></td> <td><%= @content.type.title %></td> </tr> <tr> <td><strong>Visible</strong></td> <td><%= @content.visible == 1 ? 'Yes' : 'No' %></td> </tr> <tr> <td><strong>Created By User</strong></td> <td><%= @content.user || '-' %></td> </tr> <tr> <td><strong>Categories</strong></td> <td><%= @content.categories.map(&:title).join(', ') %></td> </tr> <tr> <td><strong>Created</strong></td> <td><%= @content.created_at %></td> </tr> <tr> <td><strong>Updated</strong></td> <td><%= @content.updated_at %></td> </tr> </table> </div> </div>
Version data entries
22 entries across 22 versions & 1 rubygems