115 lines
2.5 KiB
Text
115 lines
2.5 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 :page_title do
|
|
= t('.edit_account')
|
|
|
|
:javascript
|
|
$(document).ready(function(){
|
|
$("#settings_nav li > a").live("click", function() {
|
|
var target = "#"+$(this).attr('class');
|
|
if( !$(target).is(":visible") ) {
|
|
$(".settings_pane").fadeOut(200, function() {
|
|
$(target).delay(200).fadeIn(200);
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
#section_header
|
|
%h2
|
|
= t('settings')
|
|
%ul#settings_nav
|
|
%li=link_to t('profile'), edit_profile_path
|
|
%li=link_to t('account'), edit_user_path(current_user)
|
|
%li=link_to t('_services'), services_path
|
|
|
|
.span-19.prepend-5.last
|
|
%h2
|
|
= t('account')
|
|
|
|
.span-8.append-2
|
|
%h3
|
|
= t('.your_handle')
|
|
%p
|
|
%b= current_user.diaspora_handle
|
|
.span-8.last
|
|
%h3
|
|
= t('.your_email')
|
|
%p
|
|
= current_user.email
|
|
|
|
%br
|
|
%br
|
|
%hr
|
|
%br
|
|
|
|
%h3
|
|
= t('.change_password')
|
|
= form_for @user do |f|
|
|
= f.error_messages
|
|
|
|
%p
|
|
= f.label :current_password, t('.current_password')
|
|
= f.password_field :current_password
|
|
%p
|
|
= f.label :password, t('.new_password')
|
|
= f.password_field :password
|
|
%p
|
|
= f.label :password_confirmation, t('password_confirmation')
|
|
= f.password_field :password_confirmation
|
|
|
|
.submit_block
|
|
= link_to t('cancel'), edit_user_path(current_user)
|
|
= t('or')
|
|
= f.submit t('.change_password')
|
|
|
|
%br
|
|
%br
|
|
%hr
|
|
%br
|
|
|
|
%h3
|
|
= t('.change_language')
|
|
= form_for @user do |f|
|
|
= f.error_messages
|
|
|
|
%p
|
|
= f.select :language, available_language_options
|
|
= f.submit t('.change_language')
|
|
|
|
%br
|
|
%br
|
|
%hr
|
|
%br
|
|
|
|
%h3
|
|
= t('.email_notifications')
|
|
= form_for @user do |f|
|
|
= f.error_messages
|
|
|
|
%p.checkbox_select
|
|
= f.label :disable_mail, t('.receive_email_notifications')
|
|
= f.check_box :disable_mail, {:checked => !@user.disable_mail}, false, true
|
|
%br
|
|
= f.submit t('.change')
|
|
|
|
%br
|
|
%br
|
|
%hr
|
|
%br
|
|
|
|
|
|
.span-9.append-2
|
|
%h3
|
|
= t('.export_data')
|
|
= link_to t('.download_xml'), users_export_path, :class => "button"
|
|
= link_to t('.download_photos'), users_export_photos_path, :class => "button"
|
|
|
|
.span-8.last
|
|
%h3
|
|
= t('.close_account')
|
|
= link_to t('.close_account'), current_user,
|
|
:confirm => t('are_you_sure'), :method => :delete,
|
|
:class => "button"
|