instiki/app/views/wiki/authors.rhtml

12 lines
290 B
Plaintext
Raw Normal View History

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>
<%= link_to_page author.purify %>
2007-01-22 14:43:50 +01:00
co- or authored:
<%= @page_names_by_author[author].collect { |page_name| link_to_page(page_name) }.sort.join ', ' %>
</li>
2008-12-15 20:19:22 +01:00
<%- end -%>
2007-01-22 14:43:50 +01:00
</ul>