summaryrefslogtreecommitdiff
path: root/app/views/dashboard/projects/_blank_state_welcome.html.haml
blob: 91874784531f99d5f98c47e6ea0a112e2692dbfc (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
- public_project_count = ProjectsFinder.new(current_user: current_user).execute.count

.row
  .col-md-6
    - if current_user.can_create_project?
      = link_to new_project_path, class: "blank-state-link" do
        .blank-state
          .blank-state-icon
            = custom_icon("add_new_project", size: 50)
          .blank-state-body
            %h3.blank-state-title
              Create a project
            %p.blank-state-text
              You don't have access to any projects right now.
              You can create up to
              %strong= number_with_delimiter(current_user.projects_limit)
              = succeed "." do
                = "project".pluralize(current_user.projects_limit)
    - else
      .blank-state
        .blank-state-icon
          = custom_icon("add_new_project", size: 50)
        .blank-state-body
          %h3.blank-state-title
            Create a project
          %p.blank-state-text
            If you are added to a project, it will be displayed here.

  - if current_user.can_create_group?
    .col-md-6
      = link_to new_group_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 for several dependent projects.
            %p.blank-state-text
              Groups are the best way to manage projects and members.

  .clearfix

  - if public_project_count > 0
    .col-md-6
      = link_to trending_explore_projects_path, class: "blank-state-link" do
        .blank-state
          .blank-state-icon
            = custom_icon("globe", size: 50)
          .blank-state-body
            %h3.blank-state-title
              Explore public projects
            %p.blank-state-text
              There are
              = number_with_delimiter(public_project_count)
              public projects on this server.
              Public projects are an easy way to allow
              everyone to have read-only access.