show.html.haml 1.5 KB
Newer Older
Douwe Maan's avatar
Douwe Maan committed
1 2 3
- page_title    @user.name
- header_title  @user.name, user_path(@user)

4
= content_for :meta_tags do
5
  = auto_discovery_link_tag(:atom, user_url(@user, format: :atom), title: "#{@user.name} activity")
6

7 8
= render 'shared/show_aside'

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
9
.row
10
  %section.col-md-8
11
    .header-with-avatar
12
      = link_to avatar_icon(@user.email, 400), target: '_blank' do
13
        = image_tag avatar_icon(@user.email, 90), class: "avatar avatar-tile s90", alt: ''
14 15 16
      %h3
        = @user.name
        - if @user == current_user
17
          .pull-right.hidden-xs
18 19 20 21 22 23 24 25 26
            = link_to profile_path, class: 'btn btn-sm' do
              %i.fa.fa-pencil-square-o
              Edit Profile settings
      .username
        @#{@user.username}
      .description
        - if @user.bio.present?
          = @user.bio

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
27
    .clearfix
28 29

    - if @groups.any?
30 31 32 33
      .prepend-top-20
        %h4 Groups
        = render 'groups', groups: @groups
        %hr
34

35 36 37 38
    .hidden-xs
      .user-calendar
        %h4.center.light
          %i.fa.fa-spinner.fa-spin
39
      .user-calendar-activities
40
      %hr
41
    %h4
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
42
      User Activity
43 44 45 46 47 48 49

      - if current_user
        %span.rss-icon.pull-right
          = link_to user_path(@user, :atom, { private_token: current_user.private_token }) do
            %strong
              %i.fa.fa-rss

50 51
    .content_list
    = spinner
52
  %aside.col-md-4
53
    = render 'profile', user: @user
54
    = render 'projects', projects: @projects, contributed_projects: @contributed_projects
55 56

:coffeescript
57
  $(".user-calendar").load("#{user_calendar_path}")