##// END OF EJS Templates
Backported r2429, r2430, r248 to r2491 and r2522 from trunk (request and controller objects added to the hooks by default.)....
Backported r2429, r2430, r248 to r2491 and r2522 from trunk (request and controller objects added to the hooks by default.). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/0.8-stable@2558 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1166:9daf39ec5242
r2490:36b5d4f6af04
Show More
_form.rhtml
21 lines | 666 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 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>