instiki/app/views/wiki/authors.rhtml

14 lines
320 B
Plaintext
Raw Normal View History

2005-01-15 21:26:54 +01:00
<% @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' %>