changelog.rhtml
27 lines
| 1012 B
| text/html+ruby
|
RhtmlLexer
|
r12 | <h2><%=l(:label_change_log)%></h2> | |
|
r2 | ||
|
r36 | <div> | |
<div class="rightbox" style="width:140px;"> | |||
|
r181 | <% form_tag do %> | |
|
r161 | <p><strong><%=l(:label_tracker_plural)%></strong></p> | |
|
r16 | <% @trackers.each do |tracker| %> | |
<%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %> | |||
|
r36 | <%= tracker.name %><br /> | |
|
r2 | <% end %> | |
|
r36 | <p><center><%= submit_tag l(:button_apply), :class => 'button-small' %></center></p> | |
|
r181 | <% end %> | |
|
r36 | </div> | |
|
r16 | ||
<% ver_id = nil | |||
@fixed_issues.each do |issue| %> | |||
<% unless ver_id == issue.fixed_version_id %> | |||
<% if ver_id %></ul><% end %> | |||
|
r161 | <h3 class="icon22 icon22-package"><%= issue.fixed_version.name %></h3> | |
|
r49 | <p><%= format_date(issue.fixed_version.effective_date) %><br /> | |
|
r16 | <%=h issue.fixed_version.description %></p> | |
<ul> | |||
<% ver_id = issue.fixed_version_id | |||
end %> | |||
|
r97 | <li><%= link_to "#{issue.tracker.name} #{issue.id}", :controller => 'issues', :action => 'show', :id => issue %>: <%=h issue.subject %></li> | |
|
r16 | <% end %> | |
|
r20 | </div> |