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/rb_export_card_configurations/index.html.erb

24 lines
525 B

<div class='contextual'></div>
<h2>
<%= l(:label_backlogs_export_card_config_select) %>
</h2>
<ul>
<% @configs.each do |config| %>
<li>
<p>
<%= link_to(config.name,
:controller => '/rb_export_card_configurations',
:action => 'show',
:project_id => @project.id,
:sprint_id => @sprint.id,
:id => config.id,
:format => :pdf) %>
<% if !!config.description && !config.description.empty? %>
<%= " - #{config.description}" %>
<% end %>
</p>
</li>
<% end %>
</ul>