<%= render "search" %> <% @artists.each do |artist| %> <% if artist.visible? %> <%= content_tag(:tr, :id => "artist-#{artist.id}") do %> <% end %> <% end %> <% end %>
Primary Name Secondary Names Status
<%= link_to h(artist.name), artist_path(artist) %> <% if !artist.group_name.blank? %> (group: <%= link_to(artist.group_name, artist_path(artist)) %>) <% end %> <%= artist.other_names %> <%= artist.status %>
<%= numbered_paginator(@artists) %> <%= render "secondary_links" %>
<% content_for(:page_title) do %> Artists - <%= Danbooru.config.app_name %> <% end %>