openstreetmap-website/app/views/notifier/diary_comment_notification.html.erb
Herve Saint-Amand 417176f868 Moved message table HTMl to a partial template
Several notifications are about a message having been sent from one user to another via OSM. I've moved the code for the HTML table that holds the actual user message, with the avatar and the body text, to its own partial template, so that it can be reused. I've updated a second notifier message to the new template, diary_comment_notification.
2017-01-08 22:09:10 +00:00

20 lines
706 B
Text

<% content_for :body do %>
<p style="margin: 0">
<%= t'notifier.diary_comment_notification.hi', :to_user => @to_user %>
</p>
<p>
<%= raw t'notifier.diary_comment_notification.header', :from_user => link_to_user(@from_user), :subject => content_tag("em", @title) %>
</p>
<%= render "notifier/user_message_table", :captured => capture { %>
<%= @text.to_html %>
<% } %>
<% end %>
<% content_for :footer do %>
<p><%= raw t'notifier.diary_comment_notification.footer',
:readurl => link_to(@readurl, @readurl) + tag(:br),
:commenturl => link_to(@commenturl, @commenturl) + tag(:br),
:replyurl => link_to(@replyurl, @replyurl)
%></p>
<% end %>