setting the invites added requests to the fb hash finder has options remove the requester from the list typo making a block another typo remove the if statement for the notifications checking on the right field translations and correct indenting fixed stuff added added a temp puts added a temp puts now actually referencing the service not double nesting remove stream element updated remote friends to old style removed it from the h1 block putting the stream element back
61 lines
1.8 KiB
Text
61 lines
1.8 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.
|
|
|
|
|
|
- content_for :head do
|
|
:javascript
|
|
$(document).ready(function(){
|
|
$("#new_aspect").live("ajax:success", function(data,stat,xhr){
|
|
window.location.reload();
|
|
});
|
|
|
|
$(".aspects li").find(".delete").live("click", function(){
|
|
var aspectElement = $(this).parent("li");
|
|
if (confirm("#{t('are_you_sure')}")){
|
|
aspectElement.fadeOut(300, function(){aspectElement.remove();});
|
|
}
|
|
});
|
|
});
|
|
|
|
.span-8.append-1.last
|
|
%h1{:style => "text-align:right;"}
|
|
= t('.welcome')
|
|
.description
|
|
=t('.signup_steps')
|
|
|
|
%h3{:style => "text-align:right;"}
|
|
- if @step != 1
|
|
= link_to t('.connect_services'), getting_started_path(:step => 1)
|
|
- else
|
|
%span.current_gs_step
|
|
= t('.connect_services')
|
|
%br
|
|
- if @step != 2
|
|
= link_to t('.edit_profile'), getting_started_path(:step => 2)
|
|
- else
|
|
%span.current_gs_step
|
|
= t('.edit_profile')
|
|
%br
|
|
- if @step != 3
|
|
= link_to t('.connect_on_diaspora'), getting_started_path(:step => 3)
|
|
- else
|
|
%span.current_gs_step
|
|
= t('.connect_on_diaspora')
|
|
%br
|
|
- if @step != 4
|
|
= link_to t('.finished'), getting_started_path(:step => 4)
|
|
- else
|
|
%span.current_gs_step
|
|
= t('.finished')
|
|
%br
|
|
.span-15.last
|
|
.floating{:style=>"min-height:500px;"}
|
|
= render "users/getting_started/step_#{@step}", :current_user => current_user
|
|
|
|
- if @step > 1
|
|
= link_to t('back'), getting_started_path(:step => @step-1), :class => "button", :id => "previous_step"
|
|
|
|
- if @user.getting_started
|
|
.bottom_notification
|
|
= link_to "#{t('.skip')} →", getting_started_completed_path
|