30 lines
624 B
Text
30 lines
624 B
Text
-# Copyright (c) 2010, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3. See
|
|
-# the COPYRIGHT file.
|
|
|
|
- title=t('.new_person')
|
|
|
|
= form_for @person do |f|
|
|
= f.error_messages
|
|
%p
|
|
= f.label :diaspora_handle
|
|
%br
|
|
= f.text_field :diaspora_handle
|
|
%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 t('.back_to_list'), people_path
|