22 lines
525 B
Plaintext
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>
|