Skip to content

Instantly share code, notes, and snippets.

@baileylo
Created October 19, 2010 07:51
Show Gist options
  • Select an option

  • Save baileylo/633803 to your computer and use it in GitHub Desktop.

Select an option

Save baileylo/633803 to your computer and use it in GitHub Desktop.
More stylist display for comments
<%= link_to @conversation.board.title, @conversation.board%>
<p id="notice"><%= notice %></p>
<table>
<tr>
<th colspan="2"><%= @conversation.title %></th>
</tr>
<% @conversation.comments.each do |comment| %>
<tr>
<td style="width:25%;">
<%= link_to comment.user.username, comment.user %> <br />
Posted At <br />
<%= comment.created_at%>
</td>
<td>
<p><%=comment.body%></p>
</td>
</tr>
<% end %>
</table>
<%= link_to 'Reply', reply_board_conversation_url(:board_id=>@board, :id=>@conversation)%> |
<%= link_to @conversation.board.title, @conversation.board%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment