show.html.haml 2.57 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'

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
.cover-block
  .avatar-holder
    = link_to avatar_icon(@user, 400), target: '_blank' do
      = image_tag avatar_icon(@user, 90), class: "avatar s90", alt: ''
  .cover-title
    = @user.name

  .cover-desc
    %span
      @#{@user.username}.
    - if @user.bio.present?
      %span
        #{@user.bio}.
    %span
      Member since #{@user.created_at.stamp("Aug 21, 2011")}

  .cover-desc
    - unless @user.public_email.blank?
      = link_to @user.public_email, "mailto:#{@user.public_email}"
    - unless @user.skype.blank?
      ·
      = link_to "Skype", "skype:#{@user.skype}"
    - unless @user.linkedin.blank?
      ·
      = link_to "LinkedIn", "http://www.linkedin.com/in/#{@user.linkedin}"
    - unless @user.twitter.blank?
      ·
      = link_to "Twitter", "http://www.twitter.com/#{@user.twitter}"
    - unless @user.website_url.blank?
      ·
      = link_to @user.short_website_url, @user.full_website_url
    - unless @user.location.blank?
      ·
      = @user.location
43

44

45 46 47 48 49 50 51 52 53 54 55 56 57 58
  .cover-controls
    - if @user == current_user
      = link_to profile_path, class: 'btn btn-gray' do
        = icon('pencil')
    - elsif current_user
      .report-abuse
        - if @user.abuse_report
          %button.btn.btn-danger{ title: 'Already reported for abuse',
            data: { toggle: 'tooltip', placement: 'left', container: 'body' }}
            = icon('exclamation-circle')
        - else
          = link_to new_abuse_report_path(user_id: @user.id), class: 'btn btn-gray',
            title: 'Report abuse', data: {toggle: 'tooltip', placement: 'left', container: 'body'} do
            = icon('exclamation-circle')
59

60 61 62 63 64 65 66 67 68
.gray-content-block.second-block
  .user-calendar
    %h4.center.light
      %i.fa.fa-spinner.fa-spin
  .user-calendar-activities


.row.prepend-top-20
  %section.col-md-7
69
    - if @groups.any?
70 71 72 73
      .prepend-top-20
        %h4 Groups
        = render 'groups', groups: @groups
        %hr
74

75
    %h4
76
      User Activity
77 78 79 80 81 82 83

      - 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

84 85
    .content_list
    = spinner
86
  %aside.col-md-5
87
    = render 'projects', projects: @projects, contributed_projects: @contributed_projects
88 89

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