kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.7 KiB
76 lines
2.7 KiB
<div>
|
|
<% if sprints && sprints.size > 0 %>
|
|
<h3><%= l(:backlogs_sprints) %></h3>
|
|
<% sprints.each do |sprint| %>
|
|
<%= link_to(sprint.name, {
|
|
:controller => 'backlogs',
|
|
:action => 'select_issues',
|
|
:project_id => project.id,
|
|
:sprint_id => sprint.id
|
|
}) %><br/>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<% if project %>
|
|
<h3><%= project.name %></h3>
|
|
<%= link_to(l(:backlogs_product_backlog), {
|
|
:controller => 'backlogs',
|
|
:action => 'select_issues',
|
|
:project_id => project.id
|
|
}) %><br/>
|
|
<%= link_to(l(:label_printable_cards), {
|
|
:controller => 'backlogs',
|
|
:action => 'product_backlog_cards',
|
|
:project_id => project.id
|
|
}) %><br/>
|
|
<% end %>
|
|
|
|
<% if Setting.rest_api_enabled? && key %>
|
|
<a href="<%= url_for({
|
|
:only_path => false,
|
|
:protocol => webcal,
|
|
:controller => :rb_calendars,
|
|
:action => :show,
|
|
:id => project,
|
|
:format => 'xml',
|
|
:key => key }) %>"><%= l(:label_calendar) %></a><br>
|
|
<% end %>
|
|
|
|
<% if sprint && sprint.has_burndown %>
|
|
<h3><%= l(:label_sprint_name, {:name => sprint.name}) %></h3>
|
|
<%= link_to(l(:label_task_board), {
|
|
:controller => 'backlogs',
|
|
:action => 'show',
|
|
:id => sprint.id
|
|
})
|
|
%><br/>
|
|
|
|
<%= link_to(l(:label_burndown), {
|
|
:controller => 'backlogs',
|
|
:action => 'burndown',
|
|
:project_id => project.id,
|
|
:sprint_id => sprint.id
|
|
})
|
|
%><br/>
|
|
|
|
<%= link_to(l(:label_printable_cards), {
|
|
:controller => 'backlogs',
|
|
:action => 'taskboard_cards',
|
|
:project_id => project.id,
|
|
:sprint_id => sprint.id
|
|
})
|
|
%><br/>
|
|
<% if project.enabled_modules.any? {|m| m.name=="wiki"} %>
|
|
<%= link_to(l(:label_wiki), {
|
|
:controller => 'backlogs',
|
|
:action => 'wiki_page',
|
|
:project_id => project.id,
|
|
:sprint_id => sprint.id
|
|
})
|
|
%><br/>
|
|
<% end %>
|
|
|
|
<div id="burndown_<%= sprint.id %>" class="minimal" style="margin-left:0px; margin-top:20px; width:250px; height:192px;"></div>
|
|
<%= render :partial => "rb_charts/burndown", :locals => {:div => 'burndown_', :burndown => sprint.burndown } %>
|
|
<% end %>
|
|
</div>
|
|
|