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 / publications / show.html.erb @ 444:b461f84ed41a

History | View | Annotate | Download (409 Bytes)

1
<h2>Publication Details</h2>
2
<h4>Title</h4>
3
<%= @publication.title %>
4

    
5
<h4>Authors</h4>
6
<% @publication.authors.each do |author| %>
7
<%= author.name  %> <br />
8
<% end %>
9
<br />
10

    
11
<% @publication.bibtex_entry.attributes.each do |field| %>
12
  <% if field[1] != nil %>
13
    <h4><%= field[0] %></h4>
14
    <%= @publication.bibtex_entry.attributes[field[0]] unless field[1] == nil %>
15
    <br />
16
  <% end %>
17
<% end %>
18

    
19

    
20