Sha256: 071e54b6eec7893d471a8f96db575b536ee5ea2bf923612f96f03ef936abdf3b

Contents?: true

Size: 1.59 KB

Versions: 8

Compression:

Stored size: 1.59 KB

Contents

- @section = 'my_profile'

=render :partial => "users/dashboard_nav"
    

  
#yui-main
  .yui-b
    -box do 
      %h3= :greeting.l :name => @user.login
    
      -if @user.pending_friendships.any?
        %p
          =link_to "#{image_tag 'icons/user_add.png'} #{:you_have_pending_friendship_requests.l}".html_safe, pending_user_friendships_path(@user)
    
    
      -if @network_activity.empty? && @recommended_posts.empty?
        %p
          =:this_is_your_dashboard.l
        %p
          =:dashboard_friends.l :site => configatron.community_name
          %br
          =:to_start_adding_friends.l
          =link_to :browse_all_members.l, users_path
          \.
        %p
          =link_to :update_profile_and_tag_yourself.l, edit_user_path(current_user)
          =:to_get_recommended_content_on_your_dashboard.l

    
      -unless @network_activity.empty?
        %h2=:activity_from_your_network.l
        -box :class => "fresh" do 
          =render :partial => "activities/activity", :collection => @network_activity
          %h6.all= link_to :see_all_activity.l, network_user_activities_path(current_user)

      -unless @recommended_posts.empty?
        %h3=:recommended_posts.l
        #posts
          %ul
            -@recommended_posts.each do |post|
              %li
                = link_to( "#{post.tag_for_first_image_in_body} #{truncate(post.display_title, :length => 75)} <span class='post_excerpt'>#{ truncate_words(post.post, 35, '...' )} (#{:by.l :login => post.user.login})</span>".html_safe, user_post_path(post.user, post), :title => :by.l(:login => post.user.login) )
                

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
community_engine-2.3.2 app/views/users/dashboard.html.haml
community_engine-2.3.1 app/views/users/dashboard.html.haml
community_engine-2.3.0 app/views/users/dashboard.html.haml
community_engine-2.1.0 app/views/users/dashboard.html.haml
community_engine-2.0.0 app/views/users/dashboard.html.haml
community_engine-2.0.0.beta3 app/views/users/dashboard.html.haml
community_engine-2.0.0.beta2 app/views/users/dashboard.html.haml
community_engine-2.0.0.beta1 app/views/users/dashboard.html.haml