32 lines
1.1 KiB
Text
32 lines
1.1 KiB
Text
-# Copyright (c) 2010, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3 or later. See
|
|
-# the COPYRIGHT file.
|
|
|
|
|
|
%h3= t('aspects.manage.add_a_new_contact')
|
|
|
|
= form_tag(person_by_handle_path, :id => "new_request_to_#{aspect.id}", :class => "webfinger_form", :remote => true) do
|
|
=t('.enter_a_diaspora_username')
|
|
%br
|
|
%i= t '.your_diaspora_username_is', :diaspora_handle => current_user.diaspora_handle
|
|
|
|
= search_field_tag :diaspora_handle,'', :id => "request_d_handle_to_#{aspect.id}", :results => 5, :placeholder => t('.diaspora_handle')
|
|
= hidden_field_tag :aspect_id, aspect.id
|
|
|
|
- if defined?(getting_started)
|
|
= hidden_field_tag :getting_started, getting_started
|
|
- if defined?(manage)
|
|
= hidden_field_tag :manage, true
|
|
|
|
= submit_tag t('.create_request')
|
|
%br
|
|
#loader.hidden= image_tag 'ajax-loader.gif'
|
|
%ul#request_result{:aspect_id => aspect.id}
|
|
%li.error.hidden
|
|
#message
|
|
= link_to t('.know_email'), "#invite_user_pane", :class => "invite_user_button"
|
|
%br
|
|
.yo{ :style => "display:none;"}
|
|
#invite_user_pane
|
|
= render "invitations/new"
|
|
|