##// END OF EJS Templates
Forums enhancements:...
Forums enhancements: * messages can now be edited/deleted (explicit permissions need to be given) * topics can be locked so that no reply can be added (only by users allowed to edit messages) * topics can be marked as sticky so that they always appear at the top of the list (only by users allowed to edit messages) git-svn-id: http://redmine.rubyforge.org/svn/trunk@926 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r904:deb182337d14
r913:29b3614bcb75
Show More
account.rhtml
43 lines | 2.0 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">
<%= link_to(l(:button_change_password), :action => 'password') unless @user.auth_source_id %>
</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
More flexible mail notifications settings at user level. A user has now 3 options:...
r842 <% form_for :user, @user, :url => { :action => "account" }, :builder => TabularFormBuilder, :lang => current_language do |f| %>
<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>
<% fields_for :pref, @user.pref, :builder => TabularFormBuilder, :lang => current_language do |pref_fields| %>
Jean-Philippe Lang
* Added time zone support: users can select their time zone on their account view....
r904 <p><%= pref_fields.select :time_zone, TimeZone.all.collect {|z| [ z.to_s, z.name ]}, :include_blank => true %></p>
Jean-Philippe Lang
form_for added in my/account view...
r64 <p><%= pref_fields.check_box :hide_mail %></p>
<% end %>
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">
<%= select_tag 'notification_option', options_for_select(@notification_options, @notification_option),
:onchange => 'if ($("notification_option").value == "selected") {Element.show("notified-projects")} else {Element.hide("notified-projects")}' %>
<% content_tag 'div', :id => 'notified-projects', :style => (@notification_option == 'selected' ? '' : 'display:none;') do %>
<p><% User.current.projects.each do |project| %>
<label><%= check_box_tag 'notified_project_ids[]', project.id, @user.notified_projects_ids.include?(project.id) %> <%= project.name %></label><br />
<% end %></p>
<p><em><%= l(:text_user_mail_option) %></em></p>
<% end %>
Jean-Philippe Lang
Removed hard coded string on 'My account'....
r887 <p><label><%= check_box_tag 'no_self_notified', 1, @user.pref[:no_self_notified] %> <%= l(:label_user_mail_no_self_notified) %></label></p>
Jean-Philippe Lang
More flexible mail notifications settings at user level. A user has now 3 options:...
r842 </div>
</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 %>