Sha256: e16cd60d3322a80700bbcf0e29883b611f94d02690c7ad8cdb3e687f64c871c0

Contents?: true

Size: 692 Bytes

Versions: 7

Compression:

Stored size: 692 Bytes

Contents

<%= javascript_include_tag 'commenteux/application' %>

<table class="table">
  <thead>
  <tr>
    <th>Commentaire</th>
    <th>Fait par</th>
    <th>Date</th>
  </tr>
  </thead>

  <% @comments.each do |comment| %>
      <tr>
        <td>
          <%= comment.comment %>
        </td>
        <td>
          <%= user_lookup(comment.user_id) %>
        </td>
        <td>
          <%= comment.created_at %>
        </td>
      </tr>
  <% end %>
</table>
<br/>

<%= link_to "Nouveau", "#", :id => "new_notes_link", :class => 'btn btn-primary',
            :data => {:parent => @parent_div,
                      :resource => @resource.downcase,
                      :id => @resource_id } %>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
commenteux-1.0.6 app/views/commenteux/notes/index.html.erb
commenteux-1.0.5 app/views/commenteux/notes/index.html.erb
commenteux-1.0.4 app/views/commenteux/notes/index.html.erb
commenteux-1.0.3 app/views/commenteux/notes/index.html.erb
commenteux-1.0.2 app/views/commenteux/notes/index.html.erb
commenteux-1.0.1 app/views/commenteux/notes/index.html.erb
commenteux-1.0.0 app/views/commenteux/notes/index.html.erb