Welcome to mirror list, hosted at ThFree Co, Russian Federation.

new.html.haml « invitations « views « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1df37031e879ea2d86c9ede81f4ebdcb68466dc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
.span-15.last
  .span-3
    = image_tag 'icons/monotone_email_letter_round.png', :height => "128px", :width => "128px"

  .span-12.last
    %h2
      = t('.invite_someone_to_join')
      %br
  .span-7.append-1.last
    %b= t('.paste_link')
    %br
    %br
    = invite_link(@invite_code)
    = t('.codes_left', :count => @invite_code.count)
    %br
    %br
    #email_invitation

      = form_tag new_user_invitation_path  do
        %h4
          = t('email')
        = text_field_tag 'email_inviter[emails]' ,nil, :title => t('.comma_separated_plz'), :placeholder => 'foo@bar.com, max@foo.com...'
        %br

        %h4
          = t('.language')	
        = select_tag('email_inviter[locale]',  options_from_collection_for_select(available_language_options, "second", "first", :selected => current_user.language))

        %br

        %h4
          = t('.personal_message')
        = text_area_tag 'email_inviter[message]',nil, :rows => 3, :value => t('.check_out_diaspora')

        %p
          = submit_tag t('.send_an_invitation')