diff --git a/app/views/statistics/_statistics_list.html.erb b/app/views/statistics/_statistics_list.html.erb
index 718d2096d..9cffe7670 100644
--- a/app/views/statistics/_statistics_list.html.erb
+++ b/app/views/statistics/_statistics_list.html.erb
@@ -15,7 +15,6 @@
<% end %>
<%= link_to "#{statistic.name}", statistic ,:class => "color-grey3" %>
-
<%= statistic.description.try(:html_safe) %>
<%= render :partial => 'attachments',:locals => {:attachments => statistic.try(:attachments)} %>
diff --git a/app/views/statistics/show.html.erb b/app/views/statistics/show.html.erb
index a3c01c4d2..02f542222 100644
--- a/app/views/statistics/show.html.erb
+++ b/app/views/statistics/show.html.erb
@@ -6,7 +6,16 @@
<%= image_tag(url_to_avatar(@statistic.creator), :width => "50", :height => "50", :class =>"fl" ,:style =>"border-radius: 50%") %>
<%= @statistic.name %>
-
<%= @statistic.creator.show_name %><%= format_time @statistic.created_at %>
+
+ <%= @statistic.creator.show_name %>
+ <%= @statistic.main_category.name %>
+ <% if @statistic.sub_category.present? %>
+ <%= @statistic.sub_category.try(:name) %>
+ <% end %>
+ <% if @statistic.file_size.present? %>
+ <%= @statistic.file_size %> MB
+ <% end %>
+ <%= format_time @statistic.created_at %>
<%= link_to '返回', statistics_path ,:class=>"grey_btn fr mr45 ml15", :style=>"padding:4px 10px" %>
<% if User.current.id == @statistic.user_id || User.current.admin? %>