Files
danbooru/app/views/reports/post_versions.html.erb
2016-09-07 14:35:44 -07:00

22 lines
682 B
Plaintext

<div id="c-reports">
<div id="a-post-versions">
<h1>Post Changes Report</h1>
<p>You can search all post changes to find when and where a tag was added or removed. Only the 1,000 most recent changes will be returned.</p>
<%= form_tag(reports_post_versions_create_path, :method => :post, :class => "simple_form") do %>
<div class="input">
<label for="tag">Tag</label>
<%= text_field_tag "tag" %>
<%= select_tag "type", options_for_select(%w(added removed)) %>
</div>
<%= submit_tag "Submit" %>
<% end %>
</div>
</div>
<% content_for(:page_title) do %>
Post Changes Report - <%= Danbooru.config.app_name %>
<% end %>