diff --git a/app/views/projects/show.html.erb b/app/views/projects/show.html.erb
index 007f0fa..3e38453 100644
--- a/app/views/projects/show.html.erb
+++ b/app/views/projects/show.html.erb
@@ -23,15 +23,11 @@
<%= textilizable @project.description %>
<% end %>
- <% if @project.homepage.present? || @subprojects.any? || @project.visible_custom_field_values.any?(&:present?) %>
+ <% if @project.homepage.present? || @project.visible_custom_field_values.any?(&:present?) %>
<% unless @project.homepage.blank? %>
- <%=l(:field_homepage)%>: <%= link_to_if uri_with_safe_scheme?(@project.homepage), @project.homepage, @project.homepage %>
<% end %>
- <% if @subprojects.any? %>
- - <%=l(:label_subproject_plural)%>:
- <%= @subprojects.collect{|p| link_to p, project_path(p)}.join(", ").html_safe %>
- <% end %>
<% render_custom_field_values(@project) do |custom_field, formatted| %>
- <%= custom_field.name %>: <%= formatted %>
<% end %>
@@ -95,6 +91,14 @@
<%= link_to l(:label_news_view_all), project_news_index_path(@project) %>
<% end %>
+
+ <% if @subprojects.any? %>
+
+
<%=l(:label_subproject_plural)%>
+ <%= @subprojects.collect{|p| link_to p, project_path(p)}.join(", ").html_safe %>
+
+ <% end %>
+
<%= call_hook(:view_projects_show_right, :project => @project) %>