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

issues.html.haml « groups « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08d97e418a334083bb0ca55f9424103d035759e0 (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
- page_title "Issues"
- header_title group_title(@group, "Issues", issues_group_path(@group))
= content_for :meta_tags do
  - if current_user
    = auto_discovery_link_tag(:atom, issues_group_url(@group, format: :atom, private_token: current_user.private_token), title: "#{@group.name} issues")



= render 'shared/issuable/filter', type: :issues
.gray-content-block.second-block
  .pull-right
    - if current_user
      .hidden-xs.pull-left
        = link_to issues_group_url(@group, format: :atom, private_token: current_user.private_token) do
          %i.fa.fa-rss
  %div
    Only issues from
    %strong #{@group.name}
    group are listed here.
    - if current_user
      To see all issues you should visit #{link_to 'dashboard', issues_dashboard_path} page.

.prepend-top-default
  = render 'shared/issues'