<%= link_to(l(:label_version_new), new_project_version_path(@project), :class => 'icon icon-add') if User.current.allowed_to?(:manage_versions, @project) %> <%= actions_dropdown do %> <%= link_to_if_authorized l(:label_settings), {:controller => 'projects', :action => 'settings', :id => @project, :tab => 'versions'}, :class => 'icon icon-settings' if User.current.allowed_to?(:manage_versions, @project) %> <% end %>

<%=l(:label_roadmap)%>

<% if @versions.empty? %>

<%= l(:label_no_data) %>

<% else %>
<% @versions.each do |version| %>
<% if User.current.allowed_to?(:manage_versions, version.project) %>
<%= link_to l(:button_edit), edit_version_path(version), :title => l(:button_edit), :class => 'icon-only icon-edit' %>
<% end %>

<%= link_to_version version, :name => version_anchor(version) %>

<%= l("version_status_#{version.status}") %>
<%= render :partial => 'versions/overview', :locals => {:version => version} %> <%= render(:partial => "wiki/content", :locals => {:content => version.wiki_page.content}) if version.wiki_page %> <% if (issues = @issues_by_version[version]) && issues.size > 0 %> <%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do -%> <% issues.each do |issue| -%> <% end -%> <% end %> <% end %> <%= call_hook :view_projects_roadmap_version_bottom, :version => version %>
<% end %>
<% end %> <% content_for :sidebar do %> <%= render :partial => 'versions/sidebar' %> <% end %> <% html_title(l(:label_roadmap)) %> <%= context_menu %>