Artist: <%= @artist.name.tr("_", " ") %>

<% if @artist.notes.present? && (!@artist.is_banned? || CurrentUser.user.is_member?) %>
<%= format_text(@artist.notes) %>

<%= link_to "View wiki page", @artist.wiki_page %>

<% end %>
  • Status <%= @artist.status %>
  • <% if !@artist.is_banned? || CurrentUser.user.is_member? %> <% if @artist.has_tag_alias? %>
  • Tag Alias <%= @artist.tag_alias_name %>
  • <% end %> <% if @artist.other_names.present? %>
  • Other Names <%= link_to_artists(@artist.other_names.split(/ /)) %>
  • <% end %> <% if @artist.group_name.present? %>
  • Group <%= link_to_artist(@artist.group_name) %>
  • <% end %> <% if @artist.members.any? %>
  • Members <%= link_to_artists(@artist.members.map(&:name)) %>
  • <% end %> <% @artist.urls.each do |url| %>
  • URL: <%= link_to h(url.to_s), h(url.to_s) %> <% if CurrentUser.user.is_moderator? %> (<%= link_to("mass edit", edit_moderator_tag_path(:antecedent => "-#{@artist.name} source:#{ArtistUrl.normalize_for_search(url.to_s)}", :consequent => @artist.name)) %>) <% end %>
  • <% end %> <% end %>

Recent Posts

<%= @post_set.presenter.post_previews_html(self) %>
<%= render "secondary_links" %>
<% content_for(:page_title) do %> Artist - <%= @artist.name %> - <%= Danbooru.config.app_name %> <% end %>