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

27 lines
880 B
Plaintext
Raw Normal View History

2011-12-08 21:17:53 +01:00
#feeds_content_holder
- unless @issues.empty?
.project-box.project-updates.ui-box.ui-box-small.ui-box-big
.data
- @issues.each do |update|
%a.project-update{:href => dashboard_feed_path(update.project, update)}
2012-01-27 23:51:02 +01:00
.avatar= image_tag gravatar_icon(update.assignee_email), :class => "avatar", :width => 32
%div
= truncate update.title, :length => 35
.right= truncate update.project.name
%span.update-author
%strong= update.author_name
authored
= time_ago_in_words(update.created_at)
ago
.right
- if update.critical
2012-01-27 23:51:02 +01:00
%span.label.important critical
- if update.today?
2012-01-27 23:51:02 +01:00
%span.label.new today
2011-12-08 20:17:53 +01:00
- else
%h2
No assigned
%span.tag.open open
issues