Sha256: 57db705251dbb5aa7f141badde4b90b2d33a07ab6118db308383aba8e8910676

Contents?: true

Size: 819 Bytes

Versions: 41

Compression:

Stored size: 819 Bytes

Contents

<h1>Listing comments</h1>

<table>
  <tr>
    <th>Name</th>
    <th>Comment</th>
    <th>User</th>
    <th>Votes</th>
    <th>Vote up!</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @comments.each do |comment| %>
  <tr id="c_<%= comment.id %>">
    <td><%= comment.name %></td>
    <td><%= comment.comment %></td>
    <td><%= comment.user_id %></td>
    <td><%= comment.votes %></td>
    <td>
    <% (1..5).each do |i| %>
      <%= link_to "#{i}", "/comments/#{comment.id}/vote/#{i}" %>
    <% end %>
    </td>
    <td><%= link_to 'Show', comment %></td>
    <td><%= link_to 'Edit', edit_comment_path(comment) %></td>
    <td><%= link_to 'Destroy', comment, data: { :confirm => 'Are you sure?' }, :method => :delete %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New Comment', new_comment_path %>

Version data entries

41 entries across 41 versions & 2 rubygems

Version Path
merit-4.0.3 test/dummy/app/views/comments/index.html.erb
qalam_merit-4.5.12 test/dummy/app/views/comments/index.html.erb
merit-4.0.2 test/dummy/app/views/comments/index.html.erb
qalam_merit-4.5.11 test/dummy/app/views/comments/index.html.erb
qalam_merit-4.5.10 test/dummy/app/views/comments/index.html.erb
qalam_merit-4.5.09 test/dummy/app/views/comments/index.html.erb
qalam_merit-4.5.08 test/dummy/app/views/comments/index.html.erb
qalam_merit-4.5.07 test/dummy/app/views/comments/index.html.erb
qalam_merit-4.5.06 test/dummy/app/views/comments/index.html.erb
qalam_merit-4.5.05 test/dummy/app/views/comments/index.html.erb
qalam_merit-4.5.04 test/dummy/app/views/comments/index.html.erb
qalam_merit-4.5.03 test/dummy/app/views/comments/index.html.erb
qalam_merit-4.5.02 test/dummy/app/views/comments/index.html.erb
qalam_merit-4.5.01 test/dummy/app/views/comments/index.html.erb
qalam_merit-4.5.00 test/dummy/app/views/comments/index.html.erb
qalam_merit-4.0.4 test/dummy/app/views/comments/index.html.erb
qalam_merit-4.0.35 test/dummy/app/views/comments/index.html.erb
merit-4.0.1 test/dummy/app/views/comments/index.html.erb
merit-4.0.0 test/dummy/app/views/comments/index.html.erb
merit-3.0.3 test/dummy/app/views/comments/index.html.erb