Files
danbooru/app/views/wiki_pages/_form.html.erb
2014-05-27 16:13:24 -04:00

22 lines
709 B
Plaintext

<div id="form-content">
<%= error_messages_for("wiki_page") %>
<%= simple_form_for(@wiki_page) do |f| %>
<% if @wiki_page.new_record? || CurrentUser.user.is_builder? %>
<%= f.input :title, :as => :string %>
<% end %>
<%= f.input :other_names, :as => :text, :label => "Other names (<a href='/wiki_pages/help:translated_tags'>view help</a>)".html_safe, :hint => "Names used for this tag on other sites such as Pixiv. Separate with spaces." %>
<%= dtext_field "wiki_page", "body" %>
<% if CurrentUser.user.is_janitor? %>
<%= f.input :is_locked %>
<% end %>
<%= f.button :submit, "Submit" %>
<%= dtext_preview_button "wiki_page", "body" %>
<% end %>
</div>