diff options
Diffstat (limited to 'app/views/projects/changelog.rhtml')
-rw-r--r-- | app/views/projects/changelog.rhtml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app/views/projects/changelog.rhtml b/app/views/projects/changelog.rhtml new file mode 100644 index 000000000..081456413 --- /dev/null +++ b/app/views/projects/changelog.rhtml @@ -0,0 +1,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>
\ No newline at end of file |