Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_issues.html.haml « issues « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 020bfa369737569f835c6521b122dd0c1fea5ed2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
.append-bottom-10
  .check-all-holder
    = check_box_tag "check_all_issues", nil, false, class: "check_all_issues left"
  .issues-filters
    .dropdown.inline
      %a.dropdown-toggle.btn{href: '#', "data-toggle" => "dropdown"}
        %i.icon-tags
        %span.light labels:
        - if params[:label_name].present?
          %strong= params[:label_name]
        - else
          Any
        %b.caret
      %ul.dropdown-menu
        %li
          = link_to project_filter_path(label_name: nil) do
            Any
        - issue_label_names.each do |label_name|
          %li
            = link_to project_filter_path(label_name: label_name) do
              %span{class: "label #{label_css_class(label_name)}"}
                %i.icon-tag
              = label_name
    .dropdown.inline.prepend-left-10
      %a.dropdown-toggle.btn{href: '#', "data-toggle" => "dropdown"}
        %i.icon-user
        %span.light assignee:
        - if @assignee.present?
          %strong= @assignee.name
        - elsif params[:assignee_id] == "0"
          Unassigned
        - else
          Any
        %b.caret
      %ul.dropdown-menu
        %li
          = link_to project_filter_path(assignee_id: nil) do
            Any
          = link_to project_filter_path(assignee_id: 0) do
            Unassigned
        - @assignees.sort_by(&:name).each do |user|
          %li
            = link_to project_filter_path(assignee_id: user.id) do
              = image_tag avatar_icon(user.email), class: "avatar s16", alt: ''
              = user.name

    .dropdown.inline.prepend-left-10
      %a.dropdown-toggle.btn{href: '#', "data-toggle" => "dropdown"}
        %i.icon-time
        %span.light milestone:
        - if @milestone.present?
          %strong= @milestone.title
        - elsif params[:milestone_id] == "0"
          None (backlog)
        - else
          Any
        %b.caret
      %ul.dropdown-menu
        %li
          = link_to project_filter_path(milestone_id: nil) do
            Any
          = link_to project_filter_path(milestone_id: 0) do
            None (backlog)
        - project_active_milestones.each do |milestone|
          %li
            = link_to project_filter_path(milestone_id: milestone.id) do
              %strong= milestone.title
              %small.light= milestone.expires_at

    .pull-right
      = 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
    = render @issues
    - if @issues.blank?
      %li
        %h4.nothing_here_message No issues to show

- if @issues.present?
  .pull-right
    %span.issue_counter #{@issues.total_count}
    issues for this filter

  = paginate @issues, theme: "gitlab"