<%= _("%s's communities") % profile.name %>
<% cache_timeout(profile.communities_cache_key(params), 4.hour) do %>
<% @communities.each do |community| %>
<%= profile_image_link(community)%>
<% end %>
<% end %>
<% button_bar do %>
<%= button :back, _('Go back'), { :controller => 'profile' } %>
<%= button :add, _('Create a new community'),
:controller => 'memberships', :action => 'new_community' if logged_in? && user == profile %>
<% end %>