| ... | ... | @@ -49,8 +49,8 @@ |
|
|
|
.right
|
|
|
|
= form_tag project_issues_path(@project), method: :get, class: :right do
|
|
|
|
= select_tag(:label_name, options_for_select(issue_tags, params[:label_name]), prompt: "Labels")
|
|
|
|
= select_tag(:assignee_id, options_from_collection_for_select([unassigned_issue] + @project.users.all, "id", "name", params[:assignee_id]), prompt: "Assignee")
|
|
|
|
= select_tag(:milestone_id, options_from_collection_for_select([unassigned_milestone] + @project.milestones.order("id desc").all, "id", "title", params[:milestone_id]), prompt: "Milestone")
|
|
|
|
= select_tag(:assignee_id, options_from_collection_for_select([unassigned_filter] + @project.users.all, "id", "name", params[:assignee_id]), prompt: "Assignee")
|
|
|
|
= select_tag(:milestone_id, options_from_collection_for_select([unassigned_filter] + @project.milestones.order("id desc").all, "id", "title", params[:milestone_id]), prompt: "Milestone")
|
|
|
|
= hidden_field_tag :f, params[:f]
|
|
|
|
.clearfix
|
|
|
|
|
| ... | ... | |
| ... | ... | |