Sha256: 5996689f6a49a4df1f57a12db19eb5ac8ad0710e77ee498624d4a7bda49d9e21

Contents?: true

Size: 710 Bytes

Versions: 2

Compression:

Stored size: 710 Bytes

Contents

<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.in_time_zone('Eastern Time (US & Canada)').strftime("%Y-%m-%d %H:%M:%S") %>
        </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

2 entries across 2 versions & 1 rubygems

Version Path
commenteux-1.1.2 app/views/commenteux/notes/index.html.erb
commenteux-1.1.1 app/views/commenteux/notes/index.html.erb