my_network.html.erb 513 Bytes
<%= block_title(block.title) %>

<ul>
  <li><%= link_to(_('Homepage'), block.owner.url, :class => 'url') %></li>
  <li><%= link_to(_('View profile'), block.owner.public_profile_url) %></li>
  <% if !user.nil? and block.owner.organization? and user.has_permission?('edit_profile', profile) %>
    <li><%= link_to _('Control panel'), :controller => 'profile_editor', :profile => profile.identifier %></li>
  <% end %>
</ul>

<div class="my-network-actions">
  <%= render_profile_actions block.owner.class %>
</div>