Commit 8378203de774c7b4de72c2a7a51acfa67df92b55

Authored by AntonioTerceiro
1 parent 11482d6e

ActionItem36: adding missing template


git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1470 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing 1 changed file with 12 additions and 0 deletions   Show diff stats
app/views/friends/index.rhtml 0 → 100644
... ... @@ -0,0 +1,12 @@
  1 +<h1><%= _("%s's friends") % profile.name %></h1>
  2 +
  3 +<ul class='profile-list'>
  4 +<% @friends.each do |friend| %>
  5 + <li><%= profile_image_link(friend)%></li>
  6 +<% end %>
  7 +</ul>
  8 +
  9 +
  10 +<% button_bar do %>
  11 + <%= button(:back, _('Go back'), :controller => 'profile_editor') %>
  12 +<% end %>
... ...