BikeBikeBike/app/views/user_mailer/workshop_comment.html.haml

16 lines
537 B
Plaintext
Raw Normal View History

2016-07-09 15:25:27 -07:00
%p=_('email.workshop_comment.paragraph.user_said', vars: {user_name: @comment.user.name})
%blockquote
=_!@comment.comment
2016-07-09 15:25:27 -07:00
- if @comment.reply?
- original_comment = @comment.comment_object
%p=_('email.workshop_comment.paragraph.user_said', vars: {user_name: original_comment.user.name})
%blockquote
=_!original_comment.comment
2016-07-09 15:25:27 -07:00
%p
=_'email.workshop.paragraph.view_workshop'
2017-04-09 11:37:16 -07:00
- workshop_link = view_workshop_url(@workshop.conference.slug, @workshop.id)
%a{href: workshop_link}=_!(workshop_link)