<%= render partial: 'participant', collection: @participants %>
<% if @community.proposal.present? %>
-
+
<%= render partial: 'poll', collection: @community.proposal.polls %>
<% end %>
diff --git a/app/views/communities/show.html.erb b/app/views/communities/show.html.erb
index 0e7456049..2514a4336 100644
--- a/app/views/communities/show.html.erb
+++ b/app/views/communities/show.html.erb
@@ -17,7 +17,8 @@
@@ -30,20 +31,22 @@
diff --git a/app/views/dashboard/_comment.html.erb b/app/views/dashboard/_comment.html.erb
index 4bb5bc88e..310193c34 100644
--- a/app/views/dashboard/_comment.html.erb
+++ b/app/views/dashboard/_comment.html.erb
@@ -1,10 +1,10 @@
<%= comment.body %>
-
+
<%= comment.commentable.title %>
- -
+ •
<%= l(comment.updated_at.to_date) %>
- -
+ •
<%= comment.author.name %>
diff --git a/app/views/dashboard/community.html.erb b/app/views/dashboard/community.html.erb
index 0d60e91a2..8276140e8 100644
--- a/app/views/dashboard/community.html.erb
+++ b/app/views/dashboard/community.html.erb
@@ -1,39 +1,55 @@
<% content_for :action_title, t("dashboard.menu.community") %>
-
-
- <%= link_to t("dashboard.community.access_community"), community_path(proposal.community), class: 'button hollow', target: '_blank' %>
- <% unless proposal.community.latest_activity.nil? %>
-
<%= t("dashboard.community.latest_activity", at: l(proposal.community.latest_activity.to_date)) %>
+
+
+ <%= link_to t("dashboard.community.access_community"),
+ community_path(proposal.community),
+ class: "button hollow",
+ target: "_blank" %>
+ <% if proposal.community.latest_activity.present? %>
+
+ <%= t("dashboard.community.latest_activity",
+ at: l(proposal.community.latest_activity.to_date)) %>
+
<% end %>
-
-
-
<%= number_with_delimiter(proposal.community.participants_count, delimiter: '.') %>
-
<%= t("dashboard.community.participants") %>
+
+
+
+
-
-
<%= number_with_delimiter(proposal.community.debates_count, delimiter: '.') %>
-
<%= t("dashboard.community.debates") %>
+
+
+
-
+
-
-
<%= number_with_delimiter(proposal.community.comments_count, delimiter: '.') %>
-
<%= t("dashboard.community.comments") %>
+
+
+
<% if proposal.community.comments.any? %>
-
-
<%= t("dashboard.community.latest_comments") %>
-
-
+
<%= t("dashboard.community.latest_comments") %>
-
- <%= render partial: 'comment', collection: proposal.community.comments.sort_by_newest.limit(5) %>
+
+ <%= render partial: 'comment',
+ collection: proposal.community.comments.sort_by_newest.limit(5) %>
<% end %>