2008-12-15 20:19:22 +01:00
|
|
|
<%- @title = 'Authors' -%>
|
2007-01-22 14:43:50 +01:00
|
|
|
|
|
|
|
<ul id="authorList">
|
2008-12-15 20:19:22 +01:00
|
|
|
<%- for author in @authors -%>
|
2007-01-22 14:43:50 +01:00
|
|
|
<li>
|
2008-12-17 07:07:21 +01:00
|
|
|
<%= link_to_page author.purify %>
|
2007-01-22 14:43:50 +01:00
|
|
|
co- or authored:
|
2010-05-26 07:27:49 +02:00
|
|
|
<%= raw @page_names_by_author[author].collect { |page_name| link_to_page(page_name) }.sort.join ', ' %>
|
2007-01-22 14:43:50 +01:00
|
|
|
</li>
|
2008-12-15 20:19:22 +01:00
|
|
|
<%- end -%>
|
2007-01-22 14:43:50 +01:00
|
|
|
</ul>
|