summaryrefslogtreecommitdiff
path: root/app/views/users/_overview.html.haml
blob: cf525f2bb2d8b10406a86a3890b898a76e321a64 (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
.row
  .col-md-12.col-lg-6
    .calendar-block
      .content-block.hide-bottom-border
        %h4
          = s_('UserProfile|Activity')
        .user-calendar.d-none.d-sm-block.text-left{ data: { calendar_path: user_calendar_path(@user, :json), calendar_activities_path: user_calendar_activities_path, utc_offset: Time.zone.utc_offset } }
          %h4.center.light
            %i.fa.fa-spinner.fa-spin
        .user-calendar-activities.d-none.d-sm-block

    - if can?(current_user, :read_cross_project)
      .activities-block
        .border-bottom.prepend-top-16
          %h5
            = s_('UserProfile|Recent contributions')
          .overview-content-list{ data: { href: user_path } }
            .center.light.loading
              %i.fa.fa-spinner.fa-spin
        .prepend-top-10
          = link_to s_('UserProfile|View all'), user_activity_path, class: "hide js-view-all"

  .col-md-12.col-lg-6
    .projects-block
      .border-bottom.prepend-top-16
        %h4
          = s_('UserProfile|Personal projects')
        .overview-content-list{ data: { href: user_projects_path } }
          .center.light.loading
            %i.fa.fa-spinner.fa-spin
      .prepend-top-10
        = link_to s_('UserProfile|View all'), user_projects_path, class: "hide js-view-all"