MS IZ removed weird people folder in root

This commit is contained in:
ilya 2010-07-23 17:38:30 -07:00
parent 08061d4315
commit 2cee4a0b94
4 changed files with 0 additions and 90 deletions

View file

@ -1,15 +0,0 @@
%ul#friend_stream.nav
%h4 friends!
- for friend in @friends
%li= link_to friend.real_name, person_path(friend)
%hr
%h4 on other networks!
- for author in @subscribed_persons
%li= link_to author.username, author_path(author)
%li= link_to "add a new person", new_request_path

View file

@ -1,19 +0,0 @@
- title "People"
%table
%tr
%th real name
%th email
%th url
- for person in @people
%tr
%td= person.real_name
%td= person.email
%td= person.url
%td= link_to 'Show', person
%td= link_to 'Destroy', person, :confirm => 'Are you sure?', :method => :delete
%p= link_to "Add a friend", new_request_path
#pagination
= will_paginate @people

View file

@ -1,27 +0,0 @@
- title "New Person"
= form_for @person do |f|
= f.error_messages
%p
= f.label :email
%br
= f.text_field :email
%p
= f.label :url
%br
= f.text_field :url
=f.fields_for :profile do |p|
%p
= p.label :first_name
%br
= p.text_field :first_name
%p
= p.label :last_name
%br
= p.text_field :last_name
= f.submit
%p= link_to "Back to List", people_path

View file

@ -1,29 +0,0 @@
.span-20.last
%h1= "#{@person.real_name}"
= link_to 'remove friend', @person, :confirm => 'Are you sure?', :method => :delete
%p
%b Active?
%p
= @person.active
- if @person_profile
%p
%b First Name
%p
= @person_profile.first_name
%p
%b Last Name
%p
= @person_profile.last_name
%p
%b url
%p
= @person.url
.span-20
- if @person.posts
%h3 stream
%ul#stream
- for post in @person_posts
= render type_partial(post), :post => post
- else
%h3 no posts to display!