gitlabhq/app/views/dashboard/_merge_requests_feed.html.haml

19 lines
727 B
Plaintext
Raw Normal View History

2011-12-08 21:17:53 +01:00
#feeds_content_holder
2011-12-08 20:17:53 +01:00
.project-box.project-updates.ui-box.ui-box-small.ui-box-big
.data
- @merge_requests.each do |update|
2011-12-08 21:17:53 +01:00
%a.project-update{:href => project_merge_request_path(update.project, update)}
2011-12-08 20:17:53 +01:00
= image_tag gravatar_icon(update.author_email), :class => "left", :width => 40
%span.update-title
2011-12-08 21:17:53 +01:00
= truncate update.title, :length => 70
.right= update.project.name
2011-12-08 20:17:53 +01:00
%span.update-author
%strong= update.author_name
authored
= time_ago_in_words(update.created_at)
ago
.right
2011-12-08 21:17:53 +01:00
%span.tag.commit= update.source_branch
→
%span.tag.commit= update.target_branch