All pastes #2057478 Raw Edit

Miscellany

public text v1 · immutable
#2057478 ·published 2011-05-12 16:08 UTC
rendered paste body
<%
	# post - Post
%>
<%= partial :post, :post => post %>
<% post.comments.sort_by{|v|
unless v.created_at
	v.created_at = DateTime.now
	v.save!
end
v.created_at}.each do |cmt| %>
<%= partial :comment, :comment => cmt %>
<% end %>
<a name='commform'></a>
<%= form_for(Comment.new, :action => url(:post, post.id)) do %>
	<%= text_area :text, :cols => 50, :rows => 10 %> <br />
	<%= token_tag gen_token %>
	<%= check_box :colored, :label => 'colour' if session.user %>
	<%= submit 'Submit' %>
<% end =%>