summaryrefslogtreecommitdiffstats
path: root/app/views/projects/changelog.rhtml
blob: 0814564135641a14a25e29f508704cb38c56ee48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<h2><%=l(:label_change_log)%></h2>

<div>

<div class="rightbox" style="width:140px;">
<%= start_form_tag %>
<strong><%=l(:label_tracker_plural)%></strong><br />
<% @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_form_tag %>
</div>

<% ver_id = nil
   @fixed_issues.each do |issue| %>   
    <% unless ver_id == issue.fixed_version_id %>
    <% if ver_id %></ul><% end %>
    <h3><%= l(:label_version) %>: <%= 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 %>
    <li><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %> [<%= issue.tracker.name %>]: <%= issue.subject %></li>
<% end %>
</div>