Sha256: 3300d673e0710286ded491a2318c5903098ad8c3a6acc21fc2a67de5fa798c0f

Contents?: true

Size: 795 Bytes

Versions: 9

Compression:

Stored size: 795 Bytes

Contents

<div class="container" style="margin-top: 70px;">   
  <h3>Posts</h3>   
  <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) %>   
            <%= link_to 'Edit', edit_post_path(p) %>   
            <%= link_to 'Delete', post_path(p), method: :delete %>   
          </td>    
        </tr>
      <% end %>  
     </tbody>     
  </table>  
</div>   
<div>   
  <%= link_to 'Add User', new_post_path %>   
</div> 

Version data entries

9 entries across 9 versions & 3 rubygems

Version Path
form_creation-0.0.3 app/views/form_creation/posts/index.html.erb
form_creation-0.0.2 app/views/form_creation/posts/index.html.erb
form_sample-0.0.5 app/views/example/posts/index.html.erb
form_sample-0.0.4 app/views/example/posts/index.html.erb
form_sample-0.0.3 app/views/example/posts/index.html.erb
form_create-0.0.3 app/views/example/posts/index.html.erb
form_create-0.0.2 app/views/example/posts/index.html.erb
form_sample-0.0.2 app/views/posts/index.html.erb
form_sample-0.0.1 app/views/posts/index.html.erb