18 lines
606 B
Plaintext
18 lines
606 B
Plaintext
<% content_for(:page_title) do %>
|
|
YiffyAPI - IQDB
|
|
<% end %>
|
|
|
|
<%= render "yiff_rest/api_v2/manage/nav" %>
|
|
|
|
<div class="w-100">
|
|
<div style="width: 40%; margin-left: 30%;">
|
|
<%= simple_form_for(:search, url: iqdb_query_yiff_rest_api_v2_manage_images_path, method: :post) do |f| %>
|
|
<%= f.input(:file, as: :file) %>
|
|
<%= f.input(:url, label: "File URL") %>
|
|
<%= f.input(:image_id, label: "Image ID") %>
|
|
<%= f.input(:score_cutoff, label: "Score Cutoff", input_html: { min: 0, max: 100, value: 60 }) %>
|
|
<%= f.button(:submit, "Query", name: nil) %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|