diff options
author | francis <francis> | 2008-08-26 23:29:18 +0000 |
---|---|---|
committer | francis <francis> | 2008-08-26 23:29:18 +0000 |
commit | 1e289038f289b3e0784801507fd8eb328f4fdb20 (patch) | |
tree | c4e0d8f70c270e7c15d5356cd312cfb30c5469e6 | |
parent | 179055d66480077ea65bdc7b85ca345d934b558f (diff) |
Forgot to commit this
-rw-r--r-- | app/views/comment/_single_comment.rhtml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/views/comment/_single_comment.rhtml b/app/views/comment/_single_comment.rhtml new file mode 100644 index 000000000..9a59b6e83 --- /dev/null +++ b/app/views/comment/_single_comment.rhtml @@ -0,0 +1,10 @@ +<div class="comment_in_request" id="comment-<%=comment.id.to_s%>"> + <p class=""> + On <%= simple_date(comment.created_at || Time.now) %>, + <%= comment.user ? user_link(comment.user) : 'you' %> added an annotation: + </p> + <p> + "<%= comment.get_body_for_html_display %>" + </p> +</div> + |