Sha256: 4392f44f28767b561c437e8a459c99875f77b91447dbd430983527acf63868dd

Contents?: true

Size: 963 Bytes

Versions: 6

Compression:

Stored size: 963 Bytes

Contents

<div class="container" style="margin-top: 70px;">   
  <h3>Posts</h3>
  <div style="margin-bottom: 10px;">   
    <%= link_to 'Add Post', new_post_path, class: "btn btn-success" %>   
  </div>    
  <table class="table table-striped">   
    <thead>   
    <tr> 
      <th>Title</th>   
      <th>Descption</th>
      <th>Created_by</th>
      <th>Actions</th>
    </tr>   
    </thead>   
    <tbody>   
      <% @posts.each do |p| %>   
        <tr>
          <td><%= p.title %></td>   
          <td><%= p.description %></td>
          <td><%= p.created_by %></td>
          <td>   
            <%= link_to 'Show', post_path(p), class: "btn btn-info" %>   
            <%= link_to 'Edit', edit_post_path(p), class: "btn btn-warning"%>   
            <%= link_to 'Delete', post_path(p), method: :delete, data: {confirm: "Are you sure?"}, class: "btn btn-danger" %>  
          </td>    
        </tr>
      <% end %>  
     </tbody>     
  </table>  
</div>   

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
form_creation-0.1.2 app/views/form_creation/posts/index.html.erb
form_creation-0.1.1 app/views/form_creation/posts/index.html.erb
form_creation-0.1.0 app/views/form_creation/posts/index.html.erb
form_creation-0.0.9 app/views/form_creation/posts/index.html.erb
form_creation-0.0.8 app/views/form_creation/posts/index.html.erb
form_creation-0.0.7 app/views/form_creation/posts/index.html.erb