##// END OF EJS Templates
Merged LdapAuthSourceController into AuthSourceController....
Merged LdapAuthSourceController into AuthSourceController. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9232 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8361:737655cebc51
r9112:bd47af098fef
Show More
account.html.erb
51 lines | 1.6 KiB | text/plain | TextLexer
/ app / views / my / account.html.erb
Jean-Philippe Lang
More flexible mail notifications settings at user level. A user has now 3 options:...
r842 <div class="contextual">
Jean-Philippe Lang
Adds an icon to the change password link....
r6044 <%= link_to(l(:button_change_password), {:action => 'password'}, :class => 'icon icon-passwd') if @user.change_password_allowed? %>
Eric Davis
Added :view_my_account_contextual hook....
r2975 <%= call_hook(:view_my_account_contextual, :user => @user)%>
Jean-Philippe Lang
More flexible mail notifications settings at user level. A user has now 3 options:...
r842 </div>
Jean-Philippe Lang
Replaced h3+div with fieldsets on my account and user form....
r6045
Jean-Philippe Lang
0.3 unstable...
r10 <h2><%=l(:label_my_account)%></h2>
Jean-Philippe Lang
Restored error messages on my account....
r6046 <%= error_messages_for 'user' %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Toshi MARUYAMA
Rails3: view: use explicit post method at my/account.html.erb...
r8361 <% labelled_form_for :user, @user,
:url => { :action => "account" },
:html => { :id => 'my_account_form',
:method => :post } do |f| %>
Jean-Philippe Lang
More flexible mail notifications settings at user level. A user has now 3 options:...
r842 <div class="splitcontentleft">
Jean-Philippe Lang
Replaced h3+div with fieldsets on my account and user form....
r6045 <fieldset class="box tabular">
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/my/account.html.erb...
r7141 <legend><%=l(:label_information_plural)%></legend>
<p><%= f.text_field :firstname, :required => true %></p>
<p><%= f.text_field :lastname, :required => true %></p>
<p><%= f.text_field :mail, :required => true %></p>
<p><%= f.select :language, lang_options_for_select %></p>
<% if Setting.openid? %>
<p><%= f.text_field :identity_url %></p>
<% end %>
<% @user.custom_field_values.select(&:editable?).each do |value| %>
<p><%= custom_field_tag_with_label :user, value %></p>
<% end %>
<%= call_hook(:view_my_account, :user => @user, :form => f) %>
Jean-Philippe Lang
Replaced h3+div with fieldsets on my account and user form....
r6045 </fieldset>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
More flexible mail notifications settings at user level. A user has now 3 options:...
r842 <%= submit_tag l(:button_save) %>
</div>
Jean-Philippe Lang
tables and forms redesign,...
r19
Jean-Philippe Lang
More flexible mail notifications settings at user level. A user has now 3 options:...
r842 <div class="splitcontentright">
Jean-Philippe Lang
Replaced h3+div with fieldsets on my account and user form....
r6045 <fieldset class="box">
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/my/account.html.erb...
r7141 <legend><%=l(:field_mail_notification)%></legend>
<%= render :partial => 'users/mail_notifications' %>
Jean-Philippe Lang
Replaced h3+div with fieldsets on my account and user form....
r6045 </fieldset>
<fieldset class="box tabular">
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/my/account.html.erb...
r7141 <legend><%=l(:label_preferences)%></legend>
<%= render :partial => 'users/preferences' %>
Jean-Philippe Lang
Replaced h3+div with fieldsets on my account and user form....
r6045 </fieldset>
Eric Davis
Added an API token for each User to use when making API requests. (#3920)...
r3103
Jean-Philippe Lang
More flexible mail notifications settings at user level. A user has now 3 options:...
r842 </div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
Application layout refactored....
r736
<% content_for :sidebar do %>
Jean-Philippe Lang
More flexible mail notifications settings at user level. A user has now 3 options:...
r842 <%= render :partial => 'sidebar' %>
Jean-Philippe Lang
Application layout refactored....
r736 <% end %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_my_account)) -%>