##// END OF EJS Templates
Display status change before subject of issue on the activity view otherwise it may be truncated....
Display status change before subject of issue on the activity view otherwise it may be truncated. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1505 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1477:4db45b8ceddf
r1491:2e8b2d5e1312
Show More
activity.rhtml
57 lines | 2.9 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Display the last 30 days on the activity view rather than the current month....
r1182 <h2><%= l(:label_activity) %></h2>
Jean-Philippe Lang
Show date range on the activity (closes #837)....
r1288 <p class="subtitle"><%= "#{l(:label_date_from)} #{format_date(@date_to - @days)} #{l(:label_date_to).downcase} #{format_date(@date_to-1)}" %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Slight changes to the activity view....
r1106 <div id="activity">
Jean-Philippe Lang
Display the last 30 days on the activity view rather than the current month....
r1182 <% @events_by_day.keys.sort.reverse.each do |day| %>
<h3><%= format_activity_day(day) %></h3>
Jean-Philippe Lang
Slight changes to the activity view....
r1106 <dl>
<% @events_by_day[day].sort {|x,y| y.event_datetime <=> x.event_datetime }.each do |e| -%>
Jean-Philippe Lang
Add an icon to each event on the activity view....
r1327 <dt class="<%= e.event_type %>"><span class="time"><%= format_time(e.event_datetime, false) %></span>
Jean-Philippe Lang
Fixed: changesets titles should not be multiline in atom feeds (#1356)....
r1477 <%= content_tag('span', h(e.project), :class => 'project') if @project.nil? || @project != e.project %>
<%= link_to format_activity_title(e.event_title), e.event_url %></dt>
Jean-Philippe Lang
Use display: block; for activity item descriptions....
r1427 <dd><span class="description"><%= format_activity_description(e.event_description) %></span>
Jean-Philippe Lang
Slight changes to the activity view....
r1106 <span class="author"><%= e.event_author if e.respond_to?(:event_author) %></span></dd>
<% end -%>
</dl>
<% end -%>
</div>
Jean-Philippe Lang
Application layout refactored....
r736
Jean-Philippe Lang
Slight changes to the activity view....
r1106 <%= content_tag('p', l(:label_no_data), :class => 'nodata') if @events_by_day.empty? %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<div style="float:left;">
Jean-Philippe Lang
Display the last 30 days on the activity view rather than the current month....
r1182 <%= link_to_remote(('&#171; ' + l(:label_previous)),
{:update => "content", :url => params.merge(:from => @date_to - @days), :complete => 'window.scrollTo(0,0)'},
Jean-Philippe Lang
Adds a title attribute to the next/previous links on the activity view, containing the corresponding date range (#837)....
r1246 {:href => url_for(params.merge(:from => @date_to - @days)),
:title => "#{l(:label_date_from)} #{format_date(@date_to - 2*@days)} #{l(:label_date_to).downcase} #{format_date(@date_to - @days - 1)}"}) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
<div style="float:right;">
Jean-Philippe Lang
Display the last 30 days on the activity view rather than the current month....
r1182 <%= link_to_remote((l(:label_next) + ' &#187;'),
{:update => "content", :url => params.merge(:from => @date_to + @days), :complete => 'window.scrollTo(0,0)'},
Jean-Philippe Lang
Adds a title attribute to the next/previous links on the activity view, containing the corresponding date range (#837)....
r1246 {:href => url_for(params.merge(:from => @date_to + @days)),
:title => "#{l(:label_date_from)} #{format_date(@date_to)} #{l(:label_date_to).downcase} #{format_date(@date_to + @days - 1)}"}) unless @date_to >= Date.today %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
Jean-Philippe Lang
Display links to Atom feeds (closes #496, #750)....
r1171 &nbsp;
<p class="other-formats">
<%= l(:label_export_to) %>
<%= link_to 'Atom', params.merge(:format => :atom, :key => User.current.rss_key).delete_if{|k,v|k=="commit"}, :class => 'feed' %>
</p>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663
<% content_for :header_tags do %>
Jean-Philippe Lang
Activity enhancements:...
r1213 <%= auto_discovery_link_tag(:atom, params.merge(:format => 'atom', :year => nil, :month => nil, :key => User.current.rss_key)) %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% end %>
Jean-Philippe Lang
Application layout refactored....
r736
<% content_for :sidebar do %>
Jean-Philippe Lang
Activity enhancements:...
r1213 <% form_tag({}, :method => :get) do %>
Jean-Philippe Lang
Application layout refactored....
r736 <h3><%= l(:label_activity) %></h3>
<p><% @event_types.each do |t| %>
Jean-Philippe Lang
Added label tags on various checkboxes....
r778 <label><%= check_box_tag "show_#{t}", 1, @scope.include?(t) %> <%= l("label_#{t.singularize}_plural")%></label><br />
Jean-Philippe Lang
Application layout refactored....
r736 <% end %></p>
Jean-Philippe Lang
Activity enhancements:...
r1213 <% if @project && @project.active_children.any? %>
<p><label><%= check_box_tag 'with_subprojects', 1, @with_subprojects %> <%=l(:label_subproject_plural)%></label></p>
<%= hidden_field_tag 'with_subprojects', 0 %>
<% end %>
<p><%= submit_tag l(:button_apply), :class => 'button-small', :name => nil %></p>
Jean-Philippe Lang
Application layout refactored....
r736 <% end %>
<% end %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_activity)) -%>