OpenProject is the leading open source project management software.
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.
 
 
 
 
 
 
openproject/app/views/backlogs/index.html.erb

23 lines
947 B

<%- content_for :header_tags do %>
<%= stylesheet_link_tag 'index', 'story', :plugin => 'redmine_backlogs' %>
<script type="text/javascript" src="<%= url_for(:action => 'jsvariables', :project_id => @project.id) %>"></script>
<%= javascript_include_tag 'index', 'backlog', 'story', :plugin => 'redmine_backlogs' %>
<%- end %>
<%- content_for :breadcrumbs do %>
<%= @project.name %>
<%- end %>
<div id="sprints">
<%= render :partial => "backlog", :collection => @sprints %>
</div>
<%= render :partial => "backlog", :object => { :name => "Product Backlog", :stories => @product_backlog_stories }%>
<!-- form field templates -->
<select class="status_id template" id="status_id_options">
<%- IssueStatus.find(:all, :order => "position ASC").each do |status| %>
<option value="<%= status.id %>" class="<%= (status.is_closed? ? "closed" : "") %>"><%= status.name %></option>
<%- end %>
</select>
<!-- end of form field templates -->