From 4a0afad3975079fed65b8c25e0c29f56d14f7530 Mon Sep 17 00:00:00 2001 From: Hagen Schink Date: Fri, 17 Jan 2014 08:33:40 +0100 Subject: [PATCH] Removes superfluous view --- .../my_projects_overviews/account.html.erb | 70 ------------------- 1 file changed, 70 deletions(-) delete mode 100644 app/views/my_projects_overviews/account.html.erb diff --git a/app/views/my_projects_overviews/account.html.erb b/app/views/my_projects_overviews/account.html.erb deleted file mode 100644 index 01affacf6c..0000000000 --- a/app/views/my_projects_overviews/account.html.erb +++ /dev/null @@ -1,70 +0,0 @@ -<%#-- copyright -OpenProject is a project management system. -Copyright (C) 2011-2013 the OpenProject Foundation (OPF) - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License version 3. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - -See doc/COPYRIGHT.md for more details. - -++#%> - -
-<%= link_to(l(:button_change_password), :action => 'password') if @user.change_password_allowed? %> -<%= call_hook(:view_my_account_contextual, :user => @user)%> -
-

<%=l(:label_my_account)%>

-<%= error_messages_for 'user' %> - -<% form_for :user, @user, :url => { :action => "account" }, - :builder => TabularFormBuilder, - :lang => current_language, - :html => { :id => 'my_account_form' } do |f| %> -
-

<%=l(:label_information_plural)%>

-
-

<%= f.text_field :firstname, :required => true %>

-

<%= f.text_field :lastname, :required => true %>

-

<%= f.text_field :mail, :required => true %>

-

<%= f.select :language, lang_options_for_select %>

-<% if Setting.openid? %> -

<%= f.text_field :identity_url %>

-<% end %> - -<% @user.custom_field_values.select(&:editable?).each do |value| %> -

<%= custom_field_tag_with_label :user, value %>

-<% end %> -<%= call_hook(:view_my_account, :user => @user, :form => f) %> -
- -<%= submit_tag l(:button_save) %> -
- -
-

<%=l(:field_mail_notification)%>

-
-<%= render :partial => 'users/mail_notifications' %> -
- -

<%=l(:label_preferences)%>

-
-<%= render :partial => 'users/preferences' %> -
- -
-<% end %> - -<% content_for :sidebar do %> -<%= render :partial => 'sidebar' %> -<% end %> - -<% html_title(l(:label_my_account)) -%>