2016-01-14 18:37:52 +05:30
|
|
|
- page_title @user.name
|
|
|
|
- page_description @user.bio
|
|
|
|
- header_title @user.name, user_path(@user)
|
2016-01-19 16:12:03 +05:30
|
|
|
- @no_container = true
|
2015-09-11 14:41:01 +05:30
|
|
|
|
|
|
|
= content_for :meta_tags do
|
|
|
|
= auto_discovery_link_tag(:atom, user_url(@user, format: :atom), title: "#{@user.name} activity")
|
|
|
|
|
|
|
|
= render 'shared/show_aside'
|
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
.cover-block
|
2016-01-19 16:12:03 +05:30
|
|
|
.cover-controls
|
|
|
|
- if @user == current_user
|
|
|
|
= link_to profile_path, class: 'btn btn-gray' do
|
|
|
|
= icon('pencil')
|
|
|
|
- elsif current_user
|
|
|
|
%span.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, ref_url: request.referrer), class: 'btn btn-gray',
|
|
|
|
title: 'Report abuse', data: {toggle: 'tooltip', placement: 'left', container: 'body'} do
|
|
|
|
= icon('exclamation-circle')
|
|
|
|
- if current_user
|
|
|
|
|
|
|
|
= link_to user_path(@user, :atom, { private_token: current_user.private_token }), class: 'btn btn-gray' do
|
|
|
|
= icon('rss')
|
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
.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
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
.cover-desc
|
|
|
|
%span
|
|
|
|
@#{@user.username}.
|
|
|
|
- if @user.bio.present?
|
|
|
|
%span
|
|
|
|
#{@user.bio}.
|
|
|
|
%span
|
2016-01-14 18:37:52 +05:30
|
|
|
Member since #{@user.created_at.to_s(:medium)}
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
.cover-desc
|
|
|
|
- unless @user.public_email.blank?
|
|
|
|
.profile-link-holder
|
|
|
|
= link_to @user.public_email, "mailto:#{@user.public_email}"
|
|
|
|
- unless @user.skype.blank?
|
|
|
|
.profile-link-holder
|
|
|
|
= link_to "skype:#{@user.skype}", title: "Skype" do
|
|
|
|
= icon('skype')
|
|
|
|
- unless @user.linkedin.blank?
|
|
|
|
.profile-link-holder
|
|
|
|
= link_to "https://www.linkedin.com/in/#{@user.linkedin}", title: "LinkedIn" do
|
|
|
|
= icon('linkedin-square')
|
|
|
|
- unless @user.twitter.blank?
|
|
|
|
.profile-link-holder
|
|
|
|
= link_to "https://twitter.com/#{@user.twitter}", title: "Twitter" do
|
|
|
|
= icon('twitter-square')
|
|
|
|
- unless @user.website_url.blank?
|
|
|
|
.profile-link-holder
|
|
|
|
= link_to @user.short_website_url, @user.full_website_url
|
|
|
|
- unless @user.location.blank?
|
|
|
|
.profile-link-holder
|
|
|
|
= icon('map-marker')
|
|
|
|
= @user.location
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
%ul.nav-links.center
|
|
|
|
%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
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
%div{ class: container_class }
|
|
|
|
.tab-content
|
|
|
|
.tab-pane.active#activity
|
|
|
|
.gray-content-block.white.second-block
|
|
|
|
%div{ class: container_class }
|
|
|
|
.user-calendar
|
|
|
|
%h4.center.light
|
|
|
|
%i.fa.fa-spinner.fa-spin
|
|
|
|
.user-calendar-activities
|
2015-11-26 14:37:03 +05:30
|
|
|
|
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
.content_list
|
|
|
|
= spinner
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
- if @groups.any?
|
|
|
|
.tab-pane#groups
|
|
|
|
%ul.content-list
|
|
|
|
- @groups.each do |group|
|
|
|
|
= render 'shared/groups/group', group: group
|
2015-11-26 14:37:03 +05:30
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
- if @contributed_projects.present?
|
|
|
|
.tab-pane#contributed
|
|
|
|
.contributed-projects
|
|
|
|
= render 'shared/projects/list',
|
|
|
|
projects: @contributed_projects.sort_by(&:star_count).reverse,
|
|
|
|
projects_limit: 10, stars: true, avatar: true
|
2015-11-26 14:37:03 +05:30
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
- if @projects.present?
|
|
|
|
.tab-pane#personal
|
|
|
|
.personal-projects
|
|
|
|
= render 'shared/projects/list',
|
|
|
|
projects: @projects.sort_by(&:star_count).reverse,
|
|
|
|
projects_limit: 10, stars: true, avatar: true
|
2015-11-26 14:37:03 +05:30
|
|
|
|
|
|
|
:javascript
|
|
|
|
$(".user-calendar").load("#{user_calendar_path}");
|