diff --git a/app/views/boards/_project_show.html.erb b/app/views/boards/_project_show.html.erb
index 410648c15..061f25878 100644
--- a/app/views/boards/_project_show.html.erb
+++ b/app/views/boards/_project_show.html.erb
@@ -36,14 +36,65 @@
<% if topic.sticky? %>
<%= l(:label_board_sticky)%>
<% end %>
-
- <%= l(:label_post_by)%><%= link_to topic.author, user_path(topic.author), :class =>"problem_name" %>
- <%= l(:label_post_by_time)%><%= format_time topic.created_on %>
+
+
+ <%= link_to topic.author, user_path(topic.author), :class =>"problem_name" %>
+ <%= format_time topic.created_on %>
+
+
+
+ <%= topic.content %>
- <%= link_to (l(:label_short_reply) + " "+topic.replies_count.to_s), board_message_path(@board, topic), :class => "talk_btn fr c_white" %> + - <% end %> + <% replies = topic.children. + includes(:author, :attachments, {:board => :project}). + reorder("#{Message.table_name}.created_on DESC"). + limit(2). + all %> + <% unless replies.empty? %> + <% reply_count = 0 %> + <% replies.each do |message| %> +<%= textAreailizable message,:content,:attachments => message.attachments %>
+<%= l(:label_no_data) %>
<% end %>