Files
danbooru/app/views/forum_posts/new.html.erb
evazion db63b6d44f pundit: convert forum topics / forum posts to pundit.
Fix it being possible for users to delete or undelete their own forum
posts and topics, even if they were deleted by a mod.
2020-03-20 18:03:00 -05:00

14 lines
339 B
Plaintext

<div id="c-forum-posts">
<div id="a-new">
<% if @forum_post.topic.present? %>
<h1>Reply to <%= @forum_post.topic.title %></h1>
<% else %>
<h1>New Forum Post</h1>
<% end %>
<%= render "forum_posts/partials/new/form", :forum_post => @forum_post %>
</div>
</div>
<%= render "forum_topics/secondary_links" %>