link to artist in artist version listing
This commit is contained in:
@@ -7,6 +7,7 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Artist</th>
|
||||
<th>Other Names</th>
|
||||
<th>Group</th>
|
||||
<th>Updated</th>
|
||||
@@ -18,9 +19,12 @@
|
||||
<tbody>
|
||||
<% @artist_versions.each do |artist_version| %>
|
||||
<tr class="<%= cycle 'even', 'odd' %>">
|
||||
<td><%= link_to h(artist_version.name), artist_versions_path(:search => {:artist_id => artist_version.artist_id}) %></td>
|
||||
<td><%= h artist_version.other_names %></td>
|
||||
<td><%= h artist_version.group_name %></td>
|
||||
<td>
|
||||
<%= link_to artist_version.name, artist_versions_path(:search => {:artist_id => artist_version.artist_id}) %>
|
||||
</td>
|
||||
<td><%= link_to "artist", artist_path(artist_version.artist) %></td>
|
||||
<td><%= artist_version.other_names %></td>
|
||||
<td><%= artist_version.group_name %></td>
|
||||
<td><%= time_ago_in_words_tagged artist_version.created_at %></td>
|
||||
<td><%= link_to artist_version.updater_name, user_path(artist_version.updater_id) %></td>
|
||||
<td><%= artist_version.is_active? %></td>
|
||||
|
||||
Reference in New Issue
Block a user