14 lines
320 B
Plaintext
Executable file
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' %>
|