view plugins/redmine_bibliography/app/views/authors/index.html.erb @ 1519:afce8026aaeb redmine-2.4-integration

Merge from branch "live"
author Chris Cannam
date Tue, 09 Sep 2014 09:34:53 +0100
parents b4b72f1eb644
children
line wrap: on
line source
<h2><%=l(:label_authors_index)%></h2>

<table class="list authors">		
	<thead><tr>
	<th><%=l(:field_author_name)%></th>
	<th><%=l(:field_author_username)%></th>
	<th><%=l(:field_author_publications)%></th>
	</tr></thead>
	<tbody>
	  	
  <% @authors.each do |author|%>    
	<tr id="author-<%= author.id %>" class="<%= cycle('odd', 'even') %>">
		<td class="title">
			<%= link_to_author author %>
		</td>
    <td class="username ">
      <%= link_to author.user unless author.user.nil? %>
    </td>
    <td class="project">             
      <%= render_author_publications(author) %>	
    </td>
	</tr>
	<% end %>
	</tbody>
</table>