Commit 1b3c8fbc74a10e95959b96538b1054e5e8a48b37

Authored by AntonioTerceiro
1 parent 706a1c39

ActionItem36: adding missing template


git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1490 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing 1 changed file with 11 additions and 0 deletions   Show diff stats
app/views/profile/friends.rhtml 0 → 100644
... ... @@ -0,0 +1,11 @@
  1 +<h1><%= _("%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 +<% button_bar do %>
  10 + <%= button(:back, _('Go back'), :controller => 'profile') %>
  11 +<% end %>
... ...