mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-01 11:28:15 -05:00
12 lines
335 B
Text
12 lines
335 B
Text
<%= render :partial => 'email/post', :locals => {:post => post} %>
|
|
|
|
<% if context_posts.present? %>
|
|
<hr>
|
|
<h4 style='font-size: 17px; color: #444;'><%= t "user_notifications.previous_discussion" %></h4>
|
|
|
|
<% context_posts.each do |p| %>
|
|
<%= render :partial => 'email/post', :locals => {:post => p} %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<hr>
|