diff --git a/app/views/blocks/profile_info_actions/_community.html.erb b/app/views/blocks/profile_info_actions/_community.html.erb
new file mode 100644
index 0000000..61392ab
--- /dev/null
+++ b/app/views/blocks/profile_info_actions/_community.html.erb
@@ -0,0 +1,20 @@
+
+ -
+ <%= render "blocks/profile_info_actions/join_leave_community" %>
+
+ <% if logged_in? %>
+ <% if profile.enable_contact? %>
+ -
+ <%= link_to content_tag('span', _('Send an e-mail')),
+ { :profile => profile.identifier,
+ :controller => 'contact',
+ :action => 'new' },
+ {:class => 'button with-text icon-menu-mail', :title => _('Send an e-mail to the administrators')} %>
+
+ <% end %>
+
+ - <%= report_abuse(profile, :button) %>
+
+ <%= render_environment_features(:profile_actions) %>
+ <% end %>
+
diff --git a/app/views/blocks/profile_info_actions/_enterprise.html.erb b/app/views/blocks/profile_info_actions/_enterprise.html.erb
new file mode 100644
index 0000000..34ada88
--- /dev/null
+++ b/app/views/blocks/profile_info_actions/_enterprise.html.erb
@@ -0,0 +1,12 @@
+
+ <%if logged_in? %>
+ <%if !user.favorite_enterprises.include?(profile) %>
+ - <%= link_to content_tag('span', _('Add as favorite')), { :profile => user.identifier, :controller => 'favorite_enterprises', :action => 'add', :id => profile.id }, :class => 'button with-text icon-add', :title => _('Add enterprise as favorite') %>
+ <% end %>
+ <% end %>
+ <% if profile.enable_contact? %>
+ - <%= link_to content_tag('span', _('Send an e-mail')), {:profile => profile.identifier, :controller => 'contact', :action => 'new'}, {:id => 'enterprise-contact-button', :class => 'button with-text icon-menu-mail'} %>
+ <% end %>
+
+ - <%= report_abuse(profile, :button) %>
+
diff --git a/app/views/blocks/profile_info_actions/_person.html.erb b/app/views/blocks/profile_info_actions/_person.html.erb
new file mode 100644
index 0000000..0af33fe
--- /dev/null
+++ b/app/views/blocks/profile_info_actions/_person.html.erb
@@ -0,0 +1,16 @@
+
+ <%if logged_in? && (user != profile) %>
+
+ <% if !user.already_request_friendship?(profile) and !user.is_a_friend?(profile) %>
+ -
+ <%= button(:add, content_tag('span', _('Add friend')), profile.add_url, :class => 'add-friend', :title => _("Add friend"), :style => 'position: relative;') %>
+
+ <% end %>
+
+ <% if user.is_a_friend?(profile) && profile.enable_contact? %>
+ - <%= link_to content_tag('span', _('Send an e-mail')), {:profile => profile.identifier, :controller => 'contact', :action => 'new'}, :class => 'button with-text icon-menu-mail' %>
+ <% end %>
+
+ - <%= report_abuse(profile, :button) %>
+ <% end %>
+
diff --git a/app/views/blocks/profile_info_actions/community.html.erb b/app/views/blocks/profile_info_actions/community.html.erb
deleted file mode 100644
index 61392ab..0000000
--- a/app/views/blocks/profile_info_actions/community.html.erb
+++ /dev/null
@@ -1,20 +0,0 @@
-
- -
- <%= render "blocks/profile_info_actions/join_leave_community" %>
-
- <% if logged_in? %>
- <% if profile.enable_contact? %>
- -
- <%= link_to content_tag('span', _('Send an e-mail')),
- { :profile => profile.identifier,
- :controller => 'contact',
- :action => 'new' },
- {:class => 'button with-text icon-menu-mail', :title => _('Send an e-mail to the administrators')} %>
-
- <% end %>
-
- - <%= report_abuse(profile, :button) %>
-
- <%= render_environment_features(:profile_actions) %>
- <% end %>
-
diff --git a/app/views/blocks/profile_info_actions/enterprise.html.erb b/app/views/blocks/profile_info_actions/enterprise.html.erb
deleted file mode 100644
index 34ada88..0000000
--- a/app/views/blocks/profile_info_actions/enterprise.html.erb
+++ /dev/null
@@ -1,12 +0,0 @@
-
- <%if logged_in? %>
- <%if !user.favorite_enterprises.include?(profile) %>
- - <%= link_to content_tag('span', _('Add as favorite')), { :profile => user.identifier, :controller => 'favorite_enterprises', :action => 'add', :id => profile.id }, :class => 'button with-text icon-add', :title => _('Add enterprise as favorite') %>
- <% end %>
- <% end %>
- <% if profile.enable_contact? %>
- - <%= link_to content_tag('span', _('Send an e-mail')), {:profile => profile.identifier, :controller => 'contact', :action => 'new'}, {:id => 'enterprise-contact-button', :class => 'button with-text icon-menu-mail'} %>
- <% end %>
-
- - <%= report_abuse(profile, :button) %>
-
diff --git a/app/views/blocks/profile_info_actions/organization.html.erb b/app/views/blocks/profile_info_actions/organization.html.erb
deleted file mode 100644
index e69de29..0000000
--- a/app/views/blocks/profile_info_actions/organization.html.erb
+++ /dev/null
diff --git a/app/views/blocks/profile_info_actions/person.html.erb b/app/views/blocks/profile_info_actions/person.html.erb
deleted file mode 100644
index 0af33fe..0000000
--- a/app/views/blocks/profile_info_actions/person.html.erb
+++ /dev/null
@@ -1,16 +0,0 @@
-
- <%if logged_in? && (user != profile) %>
-
- <% if !user.already_request_friendship?(profile) and !user.is_a_friend?(profile) %>
- -
- <%= button(:add, content_tag('span', _('Add friend')), profile.add_url, :class => 'add-friend', :title => _("Add friend"), :style => 'position: relative;') %>
-
- <% end %>
-
- <% if user.is_a_friend?(profile) && profile.enable_contact? %>
- - <%= link_to content_tag('span', _('Send an e-mail')), {:profile => profile.identifier, :controller => 'contact', :action => 'new'}, :class => 'button with-text icon-menu-mail' %>
- <% end %>
-
- - <%= report_abuse(profile, :button) %>
- <% end %>
-
--
libgit2 0.21.2