<% if can? :hide, comment %>
- •
+ •
<%= link_to t("admin.actions.hide").capitalize, hide_moderation_comment_path(comment),
method: :put, remote: true, data: { confirm: t('admin.actions.confirm') } %>
<% end %>
<% if can? :hide, comment.user %>
- •
+ •
<%= link_to t("admin.actions.hide_author").capitalize, hide_moderation_user_path(comment.user_id, debate_id: @debate.id),
method: :put, data: { confirm: t('admin.actions.confirm') } %>
<% end %>
diff --git a/app/views/comments/_comment.html.erb b/app/views/comments/_comment.html.erb
index 0ac6b9be1..3997efdaf 100644
--- a/app/views/comments/_comment.html.erb
+++ b/app/views/comments/_comment.html.erb
@@ -38,20 +38,20 @@
<% else %>
<%= comment.user.name %>
<% if comment.user.official? %>
- •
+ •
<% end %>
<% end %>
<% if comment.user.verified_organization? %>
- •
+ •
<%= t("shared.collective") %>
<% end %>
<% if comment.user_id == @commentable.author_id %>
- •
+ •
<%= t("debates.comment.author") %>
@@ -59,7 +59,7 @@
<% end %>
- •
+ •
<% if comment.as_administrator? %>
diff --git a/app/views/debates/_debate.html.erb b/app/views/debates/_debate.html.erb
index 49d202cc8..0d2cef4ce 100644
--- a/app/views/debates/_debate.html.erb
+++ b/app/views/debates/_debate.html.erb
@@ -11,7 +11,7 @@
<%= link_to t("debates.debate.comments", count: debate.comments_count), debate_path(debate, anchor: "comments") %>
- •
+ •
<%= l debate.created_at.to_date %>
diff --git a/app/views/debates/show.html.erb b/app/views/debates/show.html.erb
index 1c48ea214..83c37964a 100644
--- a/app/views/debates/show.html.erb
+++ b/app/views/debates/show.html.erb
@@ -32,7 +32,7 @@
<%= @debate.author.name %>
<% if @debate.author.official? %>
- •
+ •
<%= @debate.author.official_position %>
@@ -40,18 +40,18 @@
<% end %>
<% if @debate.author.verified_organization? %>
- •
+ •
<%= t("shared.collective") %>
<% end %>
- •
+ •
<%= l @debate.created_at.to_date %>
- •
+ •
<%= link_to t("debates.show.comments", count: @debate.comments_count), "#comments" %>
- •
+ •
<%= render 'debates/flag_actions', debate: @debate %>
diff --git a/app/views/moderation/bulk/index.html.erb b/app/views/moderation/bulk/index.html.erb
index c3bb68777..5451d4b1c 100644
--- a/app/views/moderation/bulk/index.html.erb
+++ b/app/views/moderation/bulk/index.html.erb
@@ -24,9 +24,9 @@
<%= link_to debate.title, debate, target: "_blank" %>
- •
+ •
<%= debate.author.username %>
- •
+ •
<%= l debate.updated_at.to_date %>
<%= debate.description %>
diff --git a/app/views/moderation/users/index.html.erb b/app/views/moderation/users/index.html.erb
index 5a49c16d1..18f4f5f67 100644
--- a/app/views/moderation/users/index.html.erb
+++ b/app/views/moderation/users/index.html.erb
@@ -19,7 +19,7 @@
<% @users.each do |user| %>
<%= user.name %>
- •
+ •
<% if user.hidden? %>
<%= t("moderation.users.index.hidden") %>
<% else %>
|