communities.rhtml 640 Bytes
<div class="common-profile-list-block"
     help="<%= _('Here are all <b>%s</b>\'s communities.') % profile.name %>">

<h1><%= _("%s's communities") % profile.name %></h1>

<ul class='profile-list'>
<% @communities.each do |community| %>
  <li><%= profile_image_link(community)%></li>
<% end %>
</ul>

<% button_bar do %>
  <%= button :back, _('Go back'), { :controller => 'profile' },
      :help => _('Back to the page where you come from.') %>
  <%= button :add, _('Create a new community'),
      :controller => 'memberships', :action => 'new_community' if logged_in? %>
<% end %>

</div><!-- fim class="common-profile-list-block" -->