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

r778:0f966dbcfdd3
r1491:2e8b2d5e1312
Show More
changelog.rhtml
42 lines | 1.5 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h2><%=l(:label_change_log)%></h2>
Jean-Philippe Lang
Application layout refactored....
r736 <% if @versions.empty? %>
<p class="nodata"><%= l(:label_no_data) %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
Versions can now be created with no date....
r533 <% @versions.each do |version| %>
<a name="<%= version.name %>"><h3 class="icon22 icon22-package"><%= version.name %></h3></a>
Jean-Philippe Lang
'Due in' label removed from the changelog view....
r689 <% if version.effective_date %>
Jean-Philippe Lang
Versions can now be created with no date....
r533 <p><%= format_date(version.effective_date) %></p>
<% end %>
<p><%=h version.description %></p>
<% issues = version.fixed_issues.find(:all,
:include => [:status, :tracker],
:conditions => ["#{IssueStatus.table_name}.is_closed=? AND #{Issue.table_name}.tracker_id in (#{@selected_tracker_ids.join(',')})", true],
Jean-Philippe Lang
Fixed: SQL error on roadmap and changelog if there is no tracker to display....
r633 :order => "#{Tracker.table_name}.position") unless @selected_tracker_ids.empty?
issues ||= []
Jean-Philippe Lang
Versions can now be created with no date....
r533 %>
<% if !issues.empty? %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <ul>
Jean-Philippe Lang
Versions can now be created with no date....
r533 <% issues.each do |issue| %>
<li><%= link_to_issue(issue) %>: <%=h issue.subject %></li>
<% end %>
</ul>
<% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
Application layout refactored....
r736
<% content_for :sidebar do %>
<% form_tag do %>
<h3><%= l(:label_change_log) %></h3>
<% @trackers.each do |tracker| %>
Jean-Philippe Lang
Added label tags on various checkboxes....
r778 <label><%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %>
<%= tracker.name %></label><br />
Jean-Philippe Lang
Application layout refactored....
r736 <% end %>
<p><%= submit_tag l(:button_apply), :class => 'button-small' %></p>
<% end %>
<h3><%= l(:label_version_plural) %></h3>
<% @versions.each do |version| %>
<%= link_to version.name, :anchor => version.name %><br />
<% end %>
<% end %>