|
|
.ui-box
|
|
.append-bottom-10
|
|
|
.title
|
|
.check-all-holder
|
|
|
= check_box_tag "check_all_issues", nil, false, class: "check_all_issues left"
|
|
= check_box_tag "check_all_issues", nil, false, class: "check_all_issues left"
|
|
|
.clearfix
|
|
|
|
|
.issues_bulk_update.hide
|
|
|
|
|
= form_tag bulk_update_project_issues_path(@project), method: :post do
|
|
|
|
|
%span Update selected issues with
|
|
|
|
|
= select_tag('update[status]', options_for_select(['open', 'closed']), prompt: "Status")
|
|
|
|
|
= project_users_select_tag('update[assignee_id]', placeholder: 'Assignee')
|
|
|
|
|
= select_tag('update[milestone_id]', bulk_update_milestone_options, prompt: "Milestone")
|
|
|
|
|
= hidden_field_tag 'update[issues_ids]', []
|
|
|
|
|
= hidden_field_tag :status, params[:status]
|
|
|
|
|
= button_tag "Save", class: "btn update_selected_issues btn-small btn-save"
|
|
|
|
|
.issues-filters
|
|
.issues-filters
|
|
|
%span Filter by
|
|
.dropdown.inline
|
|
|
.dropdown.inline.prepend-left-10
|
|
%a.dropdown-toggle.btn{href: '#', "data-toggle" => "dropdown"}
|
|
|
%a.dropdown-toggle.btn.btn-small{href: '#', "data-toggle" => "dropdown"}
|
|
|
|
|
%i.icon-tags
|
|
%i.icon-tags
|
|
|
%span.light labels:
|
|
%span.light labels:
|
|
|
- if params[:label_name].present?
|
|
- if params[:label_name].present?
|
| ... | @@ -33,7 +22,7 @@ |
... | @@ -33,7 +22,7 @@ |
|
|
%i.icon-tag
|
|
%i.icon-tag
|
|
|
= label_name
|
|
= label_name
|
|
|
.dropdown.inline.prepend-left-10
|
|
.dropdown.inline.prepend-left-10
|
|
|
%a.dropdown-toggle.btn.btn-small{href: '#', "data-toggle" => "dropdown"}
|
|
%a.dropdown-toggle.btn{href: '#', "data-toggle" => "dropdown"}
|
|
|
%i.icon-user
|
|
%i.icon-user
|
|
|
%span.light assignee:
|
|
%span.light assignee:
|
|
|
- if @assignee.present?
|
|
- if @assignee.present?
|
| ... | @@ -56,7 +45,7 @@ |
... | @@ -56,7 +45,7 @@ |
|
|
= user.name
|
|
= user.name
|
|
|
|
|
|
|
|
.dropdown.inline.prepend-left-10
|
|
.dropdown.inline.prepend-left-10
|
|
|
%a.dropdown-toggle.btn.btn-small{href: '#', "data-toggle" => "dropdown"}
|
|
%a.dropdown-toggle.btn{href: '#', "data-toggle" => "dropdown"}
|
|
|
%i.icon-time
|
|
%i.icon-time
|
|
|
%span.light milestone:
|
|
%span.light milestone:
|
|
|
- if @milestone.present?
|
|
- if @milestone.present?
|
| ... | @@ -81,7 +70,17 @@ |
... | @@ -81,7 +70,17 @@ |
|
|
.pull-right
|
|
.pull-right
|
|
|
= render 'shared/sort_dropdown'
|
|
= render 'shared/sort_dropdown'
|
|
|
|
|
|
|
|
|
.clearfix
|
|
|
|
.issues_bulk_update.hide
|
|
|
|
= form_tag bulk_update_project_issues_path(@project), method: :post do
|
|
|
|
= select_tag('update[status]', options_for_select(['Open', 'Closed']), prompt: "Status")
|
|
|
|
= project_users_select_tag('update[assignee_id]', placeholder: 'Assignee')
|
|
|
|
= select_tag('update[milestone_id]', bulk_update_milestone_options, prompt: "Milestone")
|
|
|
|
= hidden_field_tag 'update[issues_ids]', []
|
|
|
|
= hidden_field_tag :status, params[:status]
|
|
|
|
= button_tag "Update issues", class: "btn update_selected_issues btn-save"
|
|
|
|
|
|
|
|
|
.ui-box
|
|
|
%ul.well-list.issues-list
|
|
%ul.well-list.issues-list
|
|
|
= render @issues
|
|
= render @issues
|
|
|
- if @issues.blank?
|
|
- if @issues.blank?
|
| ... | |
... | |
| ... | | ... | |