Stop the last remaining uses of the `artist_urls.normalized_url` column. It's already no longer used by the artist finder. The only remaining uses were by API users. Those users should use the `url` column instead.
37 lines
1.5 KiB
Plaintext
37 lines
1.5 KiB
Plaintext
<div id="c-artist-urls">
|
|
<div id="a-index">
|
|
<%= search_form_for(artist_urls_path) do |f| %>
|
|
<%= f.simple_fields_for :artist do |fa| %>
|
|
<%= fa.input :name, label: "Artist Name", input_html: { value: params.dig(:search, :artist, :name), "data-autocomplete": "artist" } %>
|
|
<% end %>
|
|
<%= f.input :url_matches, label: "URL", input_html: { value: params[:search][:url_matches] } %>
|
|
<%= f.input :is_active, label: "Active?", collection: [["Yes", true], ["No", false]], include_blank: true, selected: params[:search][:is_active] %>
|
|
<%= f.input :order, collection: [["ID", "id"], ["Created", "created_at"], ["Updated", "updated_at"]], selected: params[:search][:order] %>
|
|
<%= f.submit "Search" %>
|
|
<% end %>
|
|
|
|
<%= table_for @artist_urls, width: "100%" do |t| %>
|
|
<% t.column :id %>
|
|
<% t.column "Artist Name" do |artist_url| %>
|
|
<%= link_to(artist_url.artist.name, artist_url.artist) %>
|
|
<% end %>
|
|
<% t.column "URL" do |artist_url| %>
|
|
<%= external_link_to(artist_url.url.to_s) %>
|
|
<% end %>
|
|
<% t.column "Active?" do |artist_url| %>
|
|
<%= artist_url.is_active.to_s %>
|
|
<% end %>
|
|
<% t.column "Created" do |artist_url| %>
|
|
<%= compact_time(artist_url.created_at) %>
|
|
<% end %>
|
|
<% t.column "Updated" do |artist_url| %>
|
|
<%= compact_time(artist_url.updated_at) %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<%= numbered_paginator(@artist_urls) %>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render "artists/secondary_links" %>
|