• Status <%= artist.status %>
  • <% if !artist.is_banned? || CurrentUser.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 %> <% if artist.domains.any? %>
  • Domains
    • <% artist.domains.each do |url, count| %>
    • <%= url %>: <%= count %>
    • <% end %>
    <% end %> <% if artist.urls.any? %>
  • URLs
    • <% artist.urls.each do |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 %> <% end %>