instiki/app/views/wiki/authors.rhtml
2005-01-15 20:26:54 +00:00

14 lines
320 B
Plaintext
Executable file

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