instiki/app/views/wiki/authors.rhtml

12 lines
314 B
Plaintext
Raw Normal View History

2007-01-22 14:43:50 +01:00
<% @title = 'Authors' %>
<ul id="authorList">
<% for author in @authors %>
<li>
2007-03-05 05:56:52 +01:00
<%= link_to_page author.delete("\x01-\x08\x0B\x0C\x0E-\x1F") %>
2007-01-22 14:43:50 +01:00
co- or authored:
<%= @page_names_by_author[author].collect { |page_name| link_to_page(page_name) }.sort.join ', ' %>
</li>
<% end %>
</ul>