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_stories/_helpers.html.erb

46 lines
1.7 KiB

<!-- story helper tags -->
<% available_statuses_by_tracker.each do |tracker, issue_statuses| %>
<% issue_statuses.each do |old_status, allowed_issue_statuses| %>
<select class="status_id helper" id="status_id_options_<%= tracker.id %>_<%= old_status.id %>">
<% allowed_issue_statuses.sort_by(&:position).each do |status| %>
<option value="<%= status.id %>" class="<%= (status.is_closed? ? l(:label_closed_issues) + ' ' : "") %>">
<%= status.name %>
</option>
<% end %>
</select>
<% end %>
<% end %>
<% all_issue_status.each do |old_status| %>
<select class="status_id helper" id="status_id_options_default_<%= old_status.id %>">
<option value="<%= default_issue_status.id %>" class="<%= (default_issue_status.is_closed? ? l(:label_closed_issues) + ' ' : "") %>">
<%= default_issue_status.name %>
</option>
<% if old_status != default_issue_status %>
<option value="<%= old_status.id %>" class="<%= (old_status.is_closed? ? l(:label_closed_issues) + ' ' : "") %>">
<%= old_status.name %>
</option>
<% end %>
</select>
<% end %>
<select class="status_id helper" id="status_id_options">
<% all_issue_status.each do |status| %>
14 years ago
<option value="<%= status.id %>" class="<%= (status.is_closed? ? l(:label_closed_issues) + ' ' : "") %>">
<%= status.name %>
</option>
<% end %>
</select>
<select class="tracker_id helper" id="tracker_id_options">
<% available_story_trackers.each do |tracker| %>
14 years ago
<option value="<%= tracker.id %>">
<%= tracker.name %>
</option>
<% end %>
</select>
<div id="story_template">
<%= render :partial => 'rb_stories/story', :object => Story.new %>
14 years ago
</div>