forked from e621ng/e621ng
11 lines
400 B
Plaintext
11 lines
400 B
Plaintext
<%= custom_form_for(ban) do |f| %>
|
|
<%= error_messages_for("ban") %>
|
|
<% if ban.new_record? %>
|
|
<%= f.input :user_name, :as => :string, autocomplete: "user" %>
|
|
<% end %>
|
|
<%= f.input :duration, :hint => "in days" %>
|
|
<%= f.input :is_permaban, as: :boolean, hint: 'ignores days' %>
|
|
<%= f.input :reason, as: :dtext, allow_color: false %>
|
|
<%= f.button :submit, :value => "Ban" %>
|
|
<% end %>
|