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

_blank_state_admin_welcome.html.haml « projects « dashboard « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 486ca8d3924938e498fb3f1c74ad849770f99ef3 (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
.row
  .col-md-6
    = link_to new_admin_user_path, class: "blank-state-link" do
      .blank-state
        .blank-state-icon
          = custom_icon("add_new_user", size: 50)
        .blank-state-body
          %h3.blank-state-title
            Add user
          %p.blank-state-text
            Add your team members and others to GitLab.

  - if current_user.can_create_group?
    .col-md-6
      = link_to admin_root_path, class: "blank-state-link" do
        .blank-state
          .blank-state-icon
            = custom_icon("add_new_group", size: 50)
          .blank-state-body
            %h3.blank-state-title
              Create a group
            %p.blank-state-text
              Groups are a great way to organize projects and people.

  .col-md-6
    = link_to admin_root_path, class: "blank-state-link" do
      .blank-state
        .blank-state-icon
          = custom_icon("configure_server", size: 50)
        .blank-state-body
          %h3.blank-state-title
            Configure GitLab
          %p.blank-state-text
            Make adjustments to how your GitLab instance is set up.