##// END OF EJS Templates
Do not mass create API keys for existing users....
Do not mass create API keys for existing users. They will be created on the fly if needed, just like for new users. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3221 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2560:ca166b30e1b2
r3107:edab0f0cbb85
Show More
_form.rhtml
26 lines | 901 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Per project forums added....
r526 <%= error_messages_for 'message' %>
Jean-Philippe Lang
Do not show sticky and locked checkboxes when replying to a message....
r1048 <% replying ||= false %>
Jean-Philippe Lang
Per project forums added....
r526
<div class="box">
<!--[form:message]-->
<p><label><%= l(:field_subject) %></label><br />
Jean-Philippe Lang
Adds an optional description to attachments....
r1166 <%= f.text_field :subject, :size => 120 %>
Jean-Philippe Lang
Forums enhancements:...
r913
Jean-Philippe Lang
Do not show sticky and locked checkboxes when replying to a message....
r1048 <% if !replying && User.current.allowed_to?(:edit_messages, @project) %>
Jean-Philippe Lang
Forums enhancements:...
r913 <label><%= f.check_box :sticky %> Sticky</label>
<label><%= f.check_box :locked %> Locked</label>
<% end %>
</p>
Jean-Philippe Lang
Per project forums added....
r526
Jean-Philippe Lang
Adds the ability to move threads between project forums (#2452). 'Edit message' permission is required....
r2560 <% if !replying && !@message.new_record? && User.current.allowed_to?(:edit_messages, @project) %>
<p><label><%= l(:label_board) %></label><br />
<%= f.select :board_id, @project.boards.collect {|b| [b.name, b.id]} %></p>
<% end %>
Jean-Philippe Lang
Adds an optional description to attachments....
r1166 <p><%= f.text_area :content, :cols => 80, :rows => 15, :class => 'wiki-edit', :id => 'message_content' %></p>
Jean-Philippe Lang
Per project forums added....
r526 <%= wikitoolbar_for 'message_content' %>
<!--[eoform:message]-->
Jean-Philippe Lang
Adds an optional description to attachments....
r1166 <p><%= l(:label_attachment_plural) %><br />
<%= render :partial => 'attachments/form' %></p>
Jean-Philippe Lang
Per project forums added....
r526 </div>