rosa-build/app/views/activity_feeds/partials/_new_comment_notification.haml

13 lines
835 B
Plaintext
Raw Normal View History

2013-02-22 14:43:51 +00:00
-user= User.where(:email => user_email).first || User.new(:email => user_email) if defined?(user_email)
.top
2013-02-22 14:43:51 +00:00
.image= link_to(image_tag(avatar_url(user, :small), :alt => 'avatar'), user_path(user)) if user.persisted?
.text
%span
2013-02-22 14:43:51 +00:00
= raw t("notifications.bodies.new_comment_notification.title", {:user_link => user.persisted? ? link_to(user_name, user_path(user)) : user_name})
2012-10-08 10:14:31 +01:00
= raw t("notifications.bodies.new_comment_notification.content", {:issue_link => link_to(issue_title, project_issue_path(project_owner, project_name, issue_serial_id) + "#comment#{comment_id}")})
= raw t("notifications.bodies.project", :project_link => link_to("#{project_owner}/#{project_name}", project_path(project_owner, project_name)) )
2012-03-11 17:30:14 +00:00
.both
%span.date= activity_feed.created_at
.both
2012-03-14 17:00:26 +00:00
%span.subject= comment_body