To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / vendor / plugins / redmine_bibliography / app / views / authors / show.html.erb @ 723:d41bf754c0f2

History | View | Annotate | Download (866 Bytes)

1 612:8fa35731c959 luis
<h2><%=l(:label_authors_show)%></h2>
2
3 698:bd88afe21831 chris
<div class="autoscroll">
4 612:8fa35731c959 luis
  <table class="list authors">
5
          <thead>
6
            <tr>
7
              <th><%=l(:field_authorship_publication_title)%></th>
8
              <th><%=l(:field_authorship_name)%></th>
9
              <th><%=l(:field_authorship_email)%></th>
10
                     <th><%=l(:field_authorship_institution)%></th>
11
            </tr>
12
          </thead>
13
14
     <% @author.authorships.each do |authorship| %>
15
       <tr id="authorship-<%= authorship.id %>" class="<%= cycle('odd', 'even') %>">
16 616:156bd1153f47 luis
         <td class="title"><%= link_to_publication(authorship.publication) %></td>
17 612:8fa35731c959 luis
         <td class="name"><%= h authorship.name_on_paper %></td>
18
         <td class="email"><%= h authorship.email %></td>
19
         <td class="institution"><%= h authorship.institution %></td>
20
       </tr>
21
    <% end %>
22
          </tbody>
23
  </table>
24 698:bd88afe21831 chris
</div>
25
26
<% content_for :sidebar do %>
27
<% end %>