annotate plugins/redmine_bibliography/app/views/authors/index.html.erb @ 1628:9c5f8e24dadc live tip

Quieten this cron script
author Chris Cannam
date Tue, 25 Aug 2020 11:38:49 +0100
parents b4b72f1eb644
children
rev   line source
luis@612 1 <h2><%=l(:label_authors_index)%></h2>
luis@328 2
luis@540 3 <table class="list authors">
luis@540 4 <thead><tr>
luis@540 5 <th><%=l(:field_author_name)%></th>
luis@540 6 <th><%=l(:field_author_username)%></th>
luis@540 7 <th><%=l(:field_author_publications)%></th>
luis@540 8 </tr></thead>
luis@540 9 <tbody>
luis@540 10
luis@540 11 <% @authors.each do |author|%>
luis@540 12 <tr id="author-<%= author.id %>" class="<%= cycle('odd', 'even') %>">
luis@540 13 <td class="title">
luis@612 14 <%= link_to_author author %>
luis@540 15 </td>
luis@540 16 <td class="username ">
luis@540 17 <%= link_to author.user unless author.user.nil? %>
luis@540 18 </td>
luis@540 19 <td class="project">
luis@540 20 <%= render_author_publications(author) %>
luis@540 21 </td>
luis@540 22 </tr>
luis@540 23 <% end %>
luis@540 24 </tbody>
luis@540 25 </table>
luis@540 26