diff options
-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> + |