Make the getting_started aspects page more like the manage page
This commit is contained in:
parent
6e14018abb
commit
e8a266b6dd
3 changed files with 42 additions and 17 deletions
|
|
@ -74,6 +74,7 @@ class UsersController < ApplicationController
|
||||||
@person = @user.person
|
@person = @user.person
|
||||||
@profile = @user.profile
|
@profile = @user.profile
|
||||||
@services = @user.services
|
@services = @user.services
|
||||||
|
@requests = @user.pending_requests
|
||||||
|
|
||||||
@step = ((params[:step].to_i>0)&&(params[:step].to_i<5)) ? params[:step].to_i : 1
|
@step = ((params[:step].to_i>0)&&(params[:step].to_i<5)) ? params[:step].to_i : 1
|
||||||
@step ||= 1
|
@step ||= 1
|
||||||
|
|
|
||||||
|
|
@ -1,33 +1,55 @@
|
||||||
-# Copyright (c) 2010, Diaspora Inc. This file is
|
-# Copyright (c) 2010, Diaspora Inc. This file is
|
||||||
-# licensed under the Affero General Public License version 3 or later. See
|
-# licensed under the Affero General Public License version 3 or later. See
|
||||||
-# the COPYRIGHT file.
|
-# the COPYRIGHT file.
|
||||||
|
- content_for :head do
|
||||||
|
= include_javascripts :aspects
|
||||||
|
|
||||||
%h3
|
%h3
|
||||||
= t('.your_aspects')
|
= t('.your_aspects')
|
||||||
.description
|
.description
|
||||||
= t('.description')
|
= t('.description')
|
||||||
|
|
||||||
|
%h3
|
||||||
|
= t('.your_inviter')
|
||||||
|
|
||||||
|
%h3
|
||||||
|
%ul.dropzone
|
||||||
|
- if @requests.size < 1
|
||||||
|
%li=t('.no_requests')
|
||||||
|
- else
|
||||||
|
- for request in @requests
|
||||||
|
%li.person.request{:data=>{:guid=>request.id, :person_id=>request.from.id}}
|
||||||
|
= person_image_link(request.from)
|
||||||
|
.requests
|
||||||
|
%p= "#{t('.drag_to_add')} =>"
|
||||||
|
|
||||||
|
|
||||||
|
%ul#aspect_list
|
||||||
|
- for aspect in @aspects
|
||||||
|
%li.aspect{:data=>{:guid=>aspect.id}}
|
||||||
|
|
||||||
|
.aspect_name
|
||||||
|
%span.edit_name_field
|
||||||
|
%h3{:contenteditable=>true}
|
||||||
|
= aspect.name
|
||||||
|
%span.tip click to edit
|
||||||
|
|
||||||
|
%ul.tools
|
||||||
|
%li!= remove_link(aspect)
|
||||||
|
|
||||||
|
%ul.dropzone{:data=>{:aspect_id=>aspect.id}}
|
||||||
|
-for contact in aspect.contacts
|
||||||
|
%li.person{:data=>{:guid=>contact.person.id, :aspect_id=>aspect.id}}
|
||||||
|
.delete
|
||||||
|
.x
|
||||||
|
X
|
||||||
|
.circle
|
||||||
|
= person_image_link(contact.person)
|
||||||
%h4
|
%h4
|
||||||
= t('.aspect_name')
|
= t('.aspect_name')
|
||||||
= form_for Aspect.new do |aspect|
|
= form_for Aspect.new do |aspect|
|
||||||
= aspect.text_field :name, :style => "display:inline;"
|
= aspect.text_field :name, :style => "display:inline;"
|
||||||
= aspect.submit t('.add')
|
= aspect.submit t('.add')
|
||||||
|
|
||||||
%ul.aspects
|
|
||||||
- for aspect in @aspects
|
|
||||||
%li{:style=>"position:relative;"}
|
|
||||||
= aspect
|
|
||||||
.contact_pictures.horizontal
|
|
||||||
- for contact in aspect.contacts
|
|
||||||
= person_image_link(contact.person)
|
|
||||||
|
|
||||||
= link_to (image_tag('add_contact_button.png', :title => t('shared.aspect_contacts.add_to', :aspect => aspect))), '#manage_aspect_contacts_pane', :class => 'manage_aspect_contacts_button'
|
|
||||||
|
|
||||||
.fancybox_content
|
|
||||||
#manage_aspect_contacts_pane
|
|
||||||
= render "requests/manage_aspect_contacts", :aspect => aspect, :getting_started => 2
|
|
||||||
|
|
||||||
= link_to "x", aspect_path(aspect), :method => :delete, :remote => true, :class => "delete right"
|
|
||||||
|
|
||||||
%br
|
%br
|
||||||
%br
|
%br
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -189,6 +189,8 @@ en:
|
||||||
description: "Tell Diaspora what different aspects of you are seen by different contacts. You can manage these later through your account menu at the top right. Your aspects are unique to you and not visible by others."
|
description: "Tell Diaspora what different aspects of you are seen by different contacts. You can manage these later through your account menu at the top right. Your aspects are unique to you and not visible by others."
|
||||||
aspect_name: "Aspect name"
|
aspect_name: "Aspect name"
|
||||||
add: "Add"
|
add: "Add"
|
||||||
|
your_inviter: "Here are the people who are waiting for you:"
|
||||||
|
drag_to_add: "Drag them to the aspect of yourself they know"
|
||||||
step_3:
|
step_3:
|
||||||
your_services: "Your services"
|
your_services: "Your services"
|
||||||
description: 'You are able to connect your existing social networks to your Diaspora account. You will be able to post publically through your Home page when you select “make public"'
|
description: 'You are able to connect your existing social networks to your Diaspora account. You will be able to post publically through your Home page when you select “make public"'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue