_projects_feed.html.haml 1.04 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
#news-feed.news-feed
  %div
    = link_to merge_requests_path, :class => "left" do 
      .box-arrow
        ←
    %h2{:style => "width:86%; text-align:center"}
      Activities
    = link_to issues_path, :class => "right" do 
      .box-arrow 
        →

  - @active_projects.first(3).each do |project|
    .project-box.project-updates.ui-box.ui-box-small.ui-box-big
      = link_to project, do 
        %h3= project.name
        .data
          - project.updates(3).each do |update|
            %a.project-update{:href => dashboard_feed_path(project, update)}
              = image_tag gravatar_icon(update.author_email), :class => "left", :width => 40
              %span.update-title
                = dashboard_feed_title(update)
              %span.update-author
                %strong= update.author_name
                authored
                = time_ago_in_words(update.created_at)
                ago
              .right
                - klass = update.class.to_s.split("::").last.downcase
                %span.tag{ :class => klass }= klass