##// END OF EJS Templates
Display the last 30 days on the activity view rather than the current month....
Display the last 30 days on the activity view rather than the current month. Number of days can be configured in the application settings. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1196 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1166:9daf39ec5242
r1182:bbe8ea29e8d3
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>