instiki/app/views/wiki/authors.rhtml

12 lines
277 B
Plaintext
Raw Normal View History

<% @title = 'Authors' %>
<ul id="authorList">
<% for author in @authors %>
<li>
<%= link_to_page author %>
co- or authored:
2005-09-27 15:46:02 +02:00
<%= @page_names_by_author[author].collect { |page_name| link_to_page(page_name) }.sort.join ', ' %>
</li>
<% end %>
</ul>