26 lines
886 B
Plaintext
26 lines
886 B
Plaintext
<h2><%=l(:label_change_log)%></h2>
|
|
|
|
|
|
<%= start_form_tag %>
|
|
<% @trackers.each do |tracker| %>
|
|
<%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %>
|
|
<%= tracker.name %>
|
|
<% end %>
|
|
<%= submit_tag l(:button_apply), :class => 'button-small' %>
|
|
<%= end_form_tag %>
|
|
|
|
<p> </p>
|
|
|
|
<% ver_id = nil
|
|
@fixed_issues.each do |issue| %>
|
|
<% unless ver_id == issue.fixed_version_id %>
|
|
<% if ver_id %></ul><% end %>
|
|
<p><strong><%= issue.fixed_version.name %></strong> - <%= format_date(issue.fixed_version.effective_date) %><br />
|
|
<%=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 %>
|
|
|