Adding the sidebar on to the total issues over time graph page

This commit is contained in:
Brad Beattie 2009-03-10 13:56:26 -07:00
parent 2220eb279c
commit e1c566b148

View File

@ -1,3 +1,7 @@
<h2><%= l(:label_graphs_issue_growth) %></h2>
<%= tag("embed", :width => "100%", :height => 300, :type => "image/svg+xml", :src => url_for(:controller => 'graphs', :action => 'issue_growth_graph')) if @project.nil? %>
<%= tag("embed", :width => "100%", :height => 300, :type => "image/svg+xml", :src => url_for(:controller => 'graphs', :action => 'issue_growth_graph', :project_id => @project.id)) unless @project.nil? %>
<% content_for :sidebar do %>
<%= render :partial => 'issues/sidebar' %>
<% end %>