Remove the creator_id field from artists, notes, and pools. The creator_id wasn't otherwise used and was inconsistent with the artist/note/pool history in some cases, especially for old artists.
16 lines
418 B
Plaintext
16 lines
418 B
Plaintext
<div id="c-notes">
|
|
<div id="a-search">
|
|
<h1>Search Notes</h1>
|
|
|
|
<%= search_form_for(notes_path) do |f| %>
|
|
<%= f.hidden_field :group_by, value: "note" %>
|
|
|
|
<%= f.input :body_matches, label: "Body" %>
|
|
<%= f.input :post_tags_match, label: "Tags", input_html: { data: { autocomplete: "tag-query" } } %>
|
|
<%= f.submit "Search" %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render "secondary_links" %>
|