35 lines
987 B
Text
35 lines
987 B
Text
-# Copyright (c) 2010, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3 or later. See
|
|
-# the COPYRIGHT file.
|
|
|
|
:javascript
|
|
$("#settings_nav li > a").click( function() {
|
|
var target = "#"+$(this).attr('class');
|
|
if( !$(target).is(":visible") ) {
|
|
$(".settings_pane").fadeOut(200, function() {
|
|
$(target).delay(200).fadeIn(200);
|
|
});
|
|
}
|
|
});
|
|
|
|
|
|
- content_for :publish do
|
|
%h1="#{t('.editing_profile')}"
|
|
|
|
- content_for :left_pane do
|
|
%ul#settings_nav
|
|
%li=link_to 'Profile', '#', :class => 'profile'
|
|
%li=link_to 'Account', '#', :class => 'account'
|
|
%li=link_to 'Services', '#', :class => 'services'
|
|
|
|
#profile.settings_pane{:style=>"display:block;"}
|
|
= render 'users/profile'
|
|
|
|
#account.settings_pane
|
|
= link_to "download my xml", users_export_path, :class => "button"
|
|
= link_to "download my photos", users_export_photos_path, :class => "button"
|
|
|
|
#services.settings_pane
|
|
= render 'users/services'
|
|
|
|
|