Upload page: show artist tag if it exists even if artist_name is empty in source

This commit is contained in:
nonamethanks
2021-07-03 06:39:28 +02:00
committed by evazion
parent e9d845e7cc
commit bea03b7dc6

View File

@@ -5,20 +5,7 @@
<% if @source.present? %>
<table class="source-data-content mt-2">
<tbody>
<% if @source.artist_name.blank? %>
<tr>
<th>Artist</th>
<td><em>None</em></td>
</tr>
<% elsif @source.artists.empty? %>
<tr>
<th>Artist</th>
<td>
<%= external_link_to @source.profile_url, @source.artist_name %>
(<%= link_to "Create new artist", new_artist_path(artist: { source: @source.canonical_url }) %>)
</td>
</tr>
<% else %>
<% if @source.artists.present? %>
<% @source.artists.each do |artist| %>
<tr>
<th>Artist</th>
@@ -33,6 +20,21 @@
</td>
</tr>
<% end %>
<% else %>
<% if @source.artist_name.blank? %>
<tr>
<th>Artist</th>
<td><em>None</em></td>
</tr>
<% else %>
<tr>
<th>Artist</th>
<td>
<%= external_link_to @source.profile_url, @source.artist_name %>
(<%= link_to "Create new artist", new_artist_path(artist: { source: @source.canonical_url }) %>)
</td>
</tr>
<% end %>
<% end %>
<tr class="source-data-tags">