##// END OF EJS Templates
Propagates time tracking to the parent project (closes #433). Time report enhancements....
Propagates time tracking to the parent project (closes #433). Time report enhancements. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1176 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1048:8b710cf9de89
r1162:200842ba5e75
Show More
_form.rhtml
22 lines | 687 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
Forums enhancements:...
r913 <%= f.text_field :subject, :required => true, :size => 120 %>
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
Forums: attachments can now be added to replies....
r910 <p><%= f.text_area :content, :required => true, :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]-->
<span class="tabular">
Jean-Philippe Lang
Attachments can now be added to wiki pages (original patch by Pavol Murin). Only authorized users can add/delete attachments....
r538 <%= render :partial => 'attachments/form' %>
Jean-Philippe Lang
Forums: attachments can now be added to replies....
r910 </span>
Jean-Philippe Lang
Per project forums added....
r526 </div>