mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
.append-bottom-10
|
|
.check-all-holder
|
|
= check_box_tag "check_all_issues", nil, false, class: "check_all_issues left"
|
|
= render 'shared/issuable_filter'
|
|
|
|
.clearfix
|
|
.issues_bulk_update.hide
|
|
= form_tag bulk_update_project_issues_path(@project), method: :post do
|
|
= select_tag('update[status]', options_for_select([['Open', 'open'], ['Closed', '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"
|
|
|
|
.panel.panel-default
|
|
%ul.well-list.issues-list
|
|
= render @issues
|
|
- if @issues.blank?
|
|
%li
|
|
.nothing-here-block No issues to show
|
|
|
|
- if @issues.present?
|
|
.pull-right
|
|
%span.issue_counter #{@issues.total_count}
|
|
issues for this filter
|
|
|
|
= paginate @issues, theme: "gitlab"
|