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

Version Path
guts-3.1.2 app/views/guts/contents/show.html.erb
guts-3.1.1 app/views/guts/contents/show.html.erb
guts-3.1.0 app/views/guts/contents/show.html.erb
guts-3.0.1 app/views/guts/contents/show.html.erb
guts-3.0.0 app/views/guts/contents/show.html.erb
guts-2.1.0 app/views/guts/contents/show.html.erb
guts-2.0.2 app/views/guts/contents/show.html.erb
guts-2.0.1 app/views/guts/contents/show.html.erb
guts-2.0.0 app/views/guts/contents/show.html.erb
guts-1.4.0 app/views/guts/contents/show.html.erb
guts-1.3.6 app/views/guts/contents/show.html.erb
guts-1.3.5 app/views/guts/contents/show.html.erb
guts-1.3.4 app/views/guts/contents/show.html.erb
guts-1.3.3 app/views/guts/contents/show.html.erb
guts-1.3.2 app/views/guts/contents/show.html.erb
guts-1.3.1 app/views/guts/contents/show.html.erb
guts-1.3.0 app/views/guts/contents/show.html.erb
guts-1.2.2 app/views/guts/contents/show.html.erb
guts-1.2.1 app/views/guts/contents/show.html.erb
guts-1.2.0 app/views/guts/contents/show.html.erb