Files
danbooru/app/views/user_mailer/forum_notice.html.erb
r888888888 2b96040a30 fixes #2191
2014-08-12 17:03:16 -07:00

22 lines
525 B
Plaintext

<!doctype html>
<html>
<head>
<%= stylesheet_link_tag "application", :media => "screen" %>
</head>
<body>
<p><%= @forum_topic.title %> was updated:</p>
<% @forum_posts.each do |forum_post| %>
<div class="prose">
<p class="author">
<%= forum_post.creator_name %> said:
</p>
<%= format_text(forum_post.body) %>
</div>
<% end %>
<p><%= link_to "View topic", forum_topic_path(@forum_topic, :page => @forum_topic.last_page, :host => Danbooru.config.hostname, :only_path => false) %></p>
</body>
</html>