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

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

8 9
= render 'shared/show_aside'

10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
.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?
28 29
      .profile-link-holder
        = link_to @user.public_email, "mailto:#{@user.public_email}"
30
    - unless @user.skype.blank?
31 32 33
      .profile-link-holder
        = link_to "skype:#{@user.skype}", title: "Skype" do
          = icon('skype')
34
    - unless @user.linkedin.blank?
35
      .profile-link-holder
36
        = link_to "https://www.linkedin.com/in/#{@user.linkedin}", title: "LinkedIn" do
37
          = icon('linkedin-square')
38
    - unless @user.twitter.blank?
39
      .profile-link-holder
40
        = link_to "https://twitter.com/#{@user.twitter}", title: "Twitter" do
41
          = icon('twitter-square')
42
    - unless @user.website_url.blank?
43 44
      .profile-link-holder
        = link_to @user.short_website_url, @user.full_website_url
45
    - unless @user.location.blank?
46 47 48
      .profile-link-holder
        = icon('map-marker')
        = @user.location
49

50

51 52 53 54 55
  .cover-controls
    - if @user == current_user
      = link_to profile_path, class: 'btn btn-gray' do
        = icon('pencil')
    - elsif current_user
56
      %span.report-abuse
57 58 59 60 61 62 63 64
        - 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')
65 66 67 68
    - if current_user
       
      = link_to user_path(@user, :atom, { private_token: current_user.private_token }), class: 'btn btn-gray' do
        = icon('rss')
69

70 71 72 73 74 75 76
.gray-content-block.second-block
  .user-calendar
    %h4.center.light
      %i.fa.fa-spinner.fa-spin
  .user-calendar-activities


77
%ul.center-top-menu.no-top.no-bottom.bottom-border.wide
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
  %li.active
    = link_to "#activity", 'data-toggle' => 'tab' do
      Activity
  - if @groups.any?
    %li
      = link_to "#groups", 'data-toggle' => 'tab' do
        Groups
  - if @contributed_projects.present?
    %li
      = link_to "#contributed", 'data-toggle' => 'tab' do
        Contributed projects
  - if @projects.present?
    %li
      = link_to "#personal", 'data-toggle' => 'tab' do
        Personal projects
93

94 95
.tab-content
  .tab-pane.active#activity
96 97
    .content_list
    = spinner
98 99 100 101 102 103 104 105 106 107 108 109

  - if @groups.any?
    .tab-pane#groups
      %ul.content-list
        - @groups.each do |group|
          = render 'shared/groups/group', group: group

  - if @contributed_projects.present?
    .tab-pane#contributed
      .contributed-projects
        = render 'shared/projects/list',
          projects: @contributed_projects.sort_by(&:star_count).reverse,
110
          projects_limit: 5, stars: true, avatar: true
111 112 113 114 115 116

  - if @projects.present?
    .tab-pane#personal
      .personal-projects
        = render 'shared/projects/list',
          projects: @projects.sort_by(&:star_count).reverse,
117
          projects_limit: 10, stars: true, avatar: true
118

119 120
:javascript
  $(".user-calendar").load("#{user_calendar_path}");