diff --git a/app/views/artists/show.html.erb b/app/views/artists/show.html.erb index d32735032..e71e063ec 100644 --- a/app/views/artists/show.html.erb +++ b/app/views/artists/show.html.erb @@ -6,6 +6,8 @@
<%= format_text(@artist.notes) %>
+ +

<%= link_to "View wiki page", @artist.wiki_page %>

<% end %>
diff --git a/app/views/wiki_pages/_excerpt.html.erb b/app/views/wiki_pages/_excerpt.html.erb index 55a8486b2..9a449c6f1 100644 --- a/app/views/wiki_pages/_excerpt.html.erb +++ b/app/views/wiki_pages/_excerpt.html.erb @@ -7,6 +7,10 @@
<%= format_text(post_set.wiki_page.presenter.excerpt) %> + <% if post_set.wiki_page.artist %> +

<%= link_to "View artist", post_set.wiki_page.artist %>

+ <% end %> + <%= wiki_page_alias_and_implication_list(post_set.wiki_page) %>

Read the <%= link_to "full article", wiki_page_path(post_set.wiki_page.id) %>.

diff --git a/app/views/wiki_pages/show.html.erb b/app/views/wiki_pages/show.html.erb index aa42987b0..38d2ede9e 100644 --- a/app/views/wiki_pages/show.html.erb +++ b/app/views/wiki_pages/show.html.erb @@ -15,6 +15,10 @@
<%= format_text(@wiki_page.body) %> + <% if @wiki_page.artist %> +

<%= link_to "View artist", @wiki_page.artist %>

+ <% end %> + <%= wiki_page_alias_and_implication_list(@wiki_page) %>