artists: don't show "Status Active" for undeleted artists.
An "active" artist entry is one that isn't deleted. Saying that every undeleted artist is "active" confuses people.
This commit is contained in:
@@ -1,6 +1,18 @@
|
||||
<%# artist %>
|
||||
<ul>
|
||||
<li><strong>Status</strong> <%= artist.status %></li>
|
||||
<% if artist.is_banned? || artist.is_deleted? %>
|
||||
<li>
|
||||
<strong>Status</strong>
|
||||
|
||||
<% if artist.is_banned? %>
|
||||
Banned
|
||||
<% end %>
|
||||
|
||||
<% if artist.is_deleted? %>
|
||||
Deleted
|
||||
<% end %>
|
||||
</li>
|
||||
<% end %>
|
||||
|
||||
<% if artist.other_names.present? %>
|
||||
<li>
|
||||
|
||||
Reference in New Issue
Block a user