##// 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:

r1138:1c8cf4ef8338
r1182:bbe8ea29e8d3
Show More
_history.rhtml
15 lines | 511 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Issue history is now 'oldest first' sorted....
r627 <% note_id = 1 %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% for journal in journals %>
Jean-Philippe Lang
Added the following permissions (#527, #585, #627):...
r1138 <div id="change-<%= journal.id %>">
Jean-Philippe Lang
Removed IssuesController#history, all changes are now displayed on issues/show (not only the last 15)....
r610 <h4><div style="float:right;"><%= link_to "##{note_id}", :anchor => "note-#{note_id}" %></div>
<%= content_tag('a', '', :name => "note-#{note_id}")%>
<%= format_time(journal.created_on) %> - <%= journal.user.name %></h4>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <ul>
<% for detail in journal.details %>
<li><%= show_detail(detail) %></li>
<% end %>
</ul>
Jean-Philippe Lang
Administrators can edit issue notes....
r1091 <%= render_notes(journal) unless journal.notes.blank? %>
Jean-Philippe Lang
Added the following permissions (#527, #585, #627):...
r1138 </div>
Jean-Philippe Lang
Issue history is now 'oldest first' sorted....
r627 <% note_id += 1 %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>