##// END OF EJS Templates
Main project list now displays root projects with their subprojects....
Main project list now displays root projects with their subprojects. Added files turned into links (if not removed) on the issue history. git-svn-id: http://redmine.rubyforge.org/svn/trunk@729 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r689:6260892949de
r718:f2a058f8cf04
Show More
changelog.rhtml
35 lines | 1.4 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h2><%=l(:label_change_log)%></h2>
<div class="rightbox" style="width:140px;">
<% form_tag do %>
Jean-Philippe Lang
Added an option to see all versions in the roadmap view (including completed ones)....
r513 <p><strong><%=l(:label_tracker_plural)%></strong><br />
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% @trackers.each do |tracker| %>
<%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %>
<%= tracker.name %><br />
Jean-Philippe Lang
Added an option to see all versions in the roadmap view (including completed ones)....
r513 <% end %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <p><center><%= submit_tag l(:button_apply), :class => 'button-small' %></center></p>
<% end %>
</div>
Jean-Philippe Lang
Versions can now be created with no date....
r533 <% if @versions.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Versions can now be created with no date....
r533 <% @versions.each do |version| %>
<a name="<%= version.name %>"><h3 class="icon22 icon22-package"><%= version.name %></h3></a>
Jean-Philippe Lang
'Due in' label removed from the changelog view....
r689 <% if version.effective_date %>
Jean-Philippe Lang
Versions can now be created with no date....
r533 <p><%= format_date(version.effective_date) %></p>
<% end %>
<p><%=h version.description %></p>
<% issues = version.fixed_issues.find(:all,
:include => [:status, :tracker],
:conditions => ["#{IssueStatus.table_name}.is_closed=? AND #{Issue.table_name}.tracker_id in (#{@selected_tracker_ids.join(',')})", true],
Jean-Philippe Lang
Fixed: SQL error on roadmap and changelog if there is no tracker to display....
r633 :order => "#{Tracker.table_name}.position") unless @selected_tracker_ids.empty?
issues ||= []
Jean-Philippe Lang
Versions can now be created with no date....
r533 %>
<% if !issues.empty? %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <ul>
Jean-Philippe Lang
Versions can now be created with no date....
r533 <% issues.each do |issue| %>
<li><%= link_to_issue(issue) %>: <%=h issue.subject %></li>
<% end %>
</ul>
<% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>