##// END OF EJS Templates
Autocomplete issue relations on subject (#3170)....
Autocomplete issue relations on subject (#3170). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4502 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4109:437690119b0b
r4388:a8b12bcb5202
Show More
account.rhtml
50 lines | 1.5 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
More flexible mail notifications settings at user level. A user has now 3 options:...
r842 <div class="contextual">
Eric Davis
Allow AuthSources to control if they allow password changes....
r3631 <%= link_to(l(:button_change_password), :action => 'password') 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
0.3 unstable...
r10 <h2><%=l(:label_my_account)%></h2>
Jean-Philippe Lang
v0.2.0...
r5 <%= error_messages_for 'user' %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Fixed drop down lists overflow on My account....
r947 <% form_for :user, @user, :url => { :action => "account" },
:builder => TabularFormBuilder,
:lang => current_language,
:html => { :id => 'my_account_form' } 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
form_for added in my/account view...
r64 <h3><%=l(:label_information_plural)%></h3>
Jean-Philippe Lang
More flexible mail notifications settings at user level. A user has now 3 options:...
r842 <div class="box tabular">
Jean-Philippe Lang
form_for added in my/account view...
r64 <p><%= f.text_field :firstname, :required => true %></p>
<p><%= f.text_field :lastname, :required => true %></p>
Jean-Philippe Lang
More flexible mail notifications settings at user level. A user has now 3 options:...
r842 <p><%= f.text_field :mail, :required => true %></p>
Jean-Philippe Lang
form_for added in my/account view...
r64 <p><%= f.select :language, lang_options_for_select %></p>
Jean-Philippe Lang
Hide openid stuff on my account if disabled (#699)....
r2393 <% if Setting.openid? %>
Eric Davis
Added the ability to login via OpenID....
r2381 <p><%= f.text_field :identity_url %></p>
Jean-Philippe Lang
Hide openid stuff on my account if disabled (#699)....
r2393 <% end %>
Jean-Philippe Lang
User custom fields can now be set as editable so that users can edit them on 'My account'....
r2274
<% @user.custom_field_values.select(&:editable?).each do |value| %>
<p><%= custom_field_tag_with_label :user, value %></p>
<% end %>
Eric Davis
Added several more plugin hooks:...
r2535 <%= call_hook(:view_my_account, :user => @user, :form => f) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
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">
<h3><%=l(:field_mail_notification)%></h3>
<div class="box">
Eric Davis
Allow admins to edit user's email notifications and preferences. #3503...
r4109 <%= render :partial => 'users/mail_notifications' %>
Jean-Philippe Lang
More flexible mail notifications settings at user level. A user has now 3 options:...
r842 </div>
Jean-Philippe Lang
Add a user preference to choose how comments/replies are displayed: in chronological or reverse chronological order (#589, #776)....
r1183
<h3><%=l(:label_preferences)%></h3>
<div class="box tabular">
Eric Davis
Allow admins to edit user's email notifications and preferences. #3503...
r4109 <%= render :partial => 'users/preferences' %>
Jean-Philippe Lang
Add a user preference to choose how comments/replies are displayed: in chronological or reverse chronological order (#589, #776)....
r1183 </div>
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)) -%>