instiki/app/views/wiki/authors.rhtml

12 lines
275 B
Plaintext

<% @title = 'Authors' %>
<ul id="authorList">
<% for author in @authors %>
<li>
<%= link_to_page author %>
co- or authored:
<%= @web.select.pages_authored_by(author).collect { |page| link_to_page(page.name) }.join ', ' %>
</li>
<% end %>
</ul>