diff --git a/app/views/blocks/profile_info.rhtml b/app/views/blocks/profile_info.rhtml
index 800ca23..2966df5 100644
--- a/app/views/blocks/profile_info.rhtml
+++ b/app/views/blocks/profile_info.rhtml
@@ -23,14 +23,16 @@
<% end %>
-
-<%=
- [ [ profile.city, 'locality' ],
- [ profile.state, 'region' ],
- [ profile.country, 'country-name' ]
- ].map{ |s,c| s =~ /^\s*$/ ? nil : content_tag( 'span', s, :class => c ) }.compact.join ' - '
-%>
-
+<% if block.owner.person? %>
+
+ <%=
+ [ [ profile.city, 'locality' ],
+ [ profile.state, 'region' ],
+ [ profile.country, 'country-name' ]
+ ].map{ |s,c| s =~ /^\s*$/ ? nil : content_tag( 'span', s, :class => c ) }.compact.join ' - '
+ %>
+
+<% end %>
<%= render :file => 'blocks/profile_info_actions/' + block.owner.class.name.underscore %>
--
libgit2 0.21.2