2006-07-29 23:54:22 +04:00
|
|
|
<h2><%=l(:label_change_log)%></h2>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2006-11-05 19:49:27 +03:00
|
|
|
<div>
|
|
|
|
|
|
|
|
<div class="rightbox" style="width:140px;">
|
2006-07-30 16:55:29 +04:00
|
|
|
<%= start_form_tag %>
|
2006-11-05 19:49:27 +03:00
|
|
|
<strong><%=l(:label_tracker_plural)%></strong><br />
|
2006-07-30 16:55:29 +04:00
|
|
|
<% @trackers.each do |tracker| %>
|
|
|
|
<%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %>
|
2006-11-05 19:49:27 +03:00
|
|
|
<%= tracker.name %><br />
|
2006-06-28 22:11:03 +04:00
|
|
|
<% end %>
|
2006-11-05 19:49:27 +03:00
|
|
|
<p><center><%= submit_tag l(:button_apply), :class => 'button-small' %></center></p>
|
|
|
|
<%= end_form_tag %>
|
|
|
|
</div>
|
2006-07-30 16:55:29 +04:00
|
|
|
|
|
|
|
<% ver_id = nil
|
|
|
|
@fixed_issues.each do |issue| %>
|
|
|
|
<% unless ver_id == issue.fixed_version_id %>
|
|
|
|
<% if ver_id %></ul><% end %>
|
2006-11-22 01:27:47 +03:00
|
|
|
<h3><%= l(:label_version) %>: <%= issue.fixed_version.name %></h3>
|
|
|
|
<p><%= format_date(issue.fixed_version.effective_date) %><br />
|
2006-07-30 16:55:29 +04:00
|
|
|
<%=h issue.fixed_version.description %></p>
|
|
|
|
<ul>
|
|
|
|
<% ver_id = issue.fixed_version_id
|
|
|
|
end %>
|
|
|
|
<li><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %> [<%= issue.tracker.name %>]: <%= issue.subject %></li>
|
|
|
|
<% end %>
|
2006-09-03 14:25:21 +04:00
|
|
|
</div>
|