diaspora/app/views/friends/show.html.haml
danielvincent e159b8f7f4 Merge branch 'master' of github.com:diaspora/diaspora_rails
Conflicts:
	app/views/friends/show.html.haml
2010-06-29 20:56:44 -07:00

24 lines
409 B
Text

.span-18.last
%h1= "#{@friend.real_name}"
- if @friend_profile
%p
%b First Name
%p
= @friend_profile.first_name
%p
%b Last Name
%p
= @friend_profile.last_name
%p
%b url
%p
= @friend.url
.span-18
- if @friend.posts
%h3 stream
%ul#stream
- for post in @friend_posts
= render type_partial(post), :post => post
- else
%h3 no posts to display!