##// END OF EJS Templates
Don't display the dropdown if no transition is allowed....
Jean-Philippe Lang -
r10284:d255f7f5b037
parent child
Show More
@@ -2,7 +2,7
2 2
3 3 <div class="splitcontent">
4 4 <div class="splitcontentleft">
5 <% if @issue.safe_attribute? 'status_id' %>
5 <% if @issue.safe_attribute?('status_id') && @allowed_statuses.present? %>
6 6 <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), {:required => true},
7 7 :onchange => "updateIssueFrom('#{escape_javascript project_issue_form_path(@project, :id => @issue, :format => 'js')}')" %></p>
8 8
General Comments 0
You need to be logged in to leave comments. Login now