2007-03-12 20:59:02 +03:00
|
|
|
<h2><%=l(:label_change_log)%></h2>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
|
|
|
<div class="rightbox" style="width:140px;">
|
|
|
|
<% form_tag do %>
|
|
|
|
<p><strong><%=l(:label_tracker_plural)%></strong></p>
|
|
|
|
<% @trackers.each do |tracker| %>
|
|
|
|
<%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %>
|
|
|
|
<%= tracker.name %><br />
|
|
|
|
<% end %>
|
|
|
|
<p><center><%= submit_tag l(:button_apply), :class => 'button-small' %></center></p>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<% if @fixed_issues.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
|
|
|
|
|
|
|
|
<% ver_id = nil
|
|
|
|
@fixed_issues.each do |issue| %>
|
|
|
|
<% unless ver_id == issue.fixed_version_id %>
|
|
|
|
<% if ver_id %></ul><% end %>
|
|
|
|
<h3 class="icon22 icon22-package"><%= issue.fixed_version.name %></h3>
|
|
|
|
<p><%= format_date(issue.fixed_version.effective_date) %><br />
|
|
|
|
<%=h issue.fixed_version.description %></p>
|
|
|
|
<ul>
|
|
|
|
<% ver_id = issue.fixed_version_id
|
|
|
|
end %>
|
2007-04-07 22:30:01 +04:00
|
|
|
<li><%= link_to_issue issue %>: <%=h issue.subject %></li>
|
2007-03-12 20:59:02 +03:00
|
|
|
<% end %>
|
2006-09-03 14:25:21 +04:00
|
|
|
</div>
|