%# artist %>
- 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) %>
<% 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| %>
-
<% if url.is_active? %>
<%= link_to h(url.to_s), h(url) %>
<% else %>
<%= h(url.url) %>
<% end %>
<% end %>
<% end %>
<% end %>