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 / plugins / redmine_bibliography / app / views / publications / show.html.erb @ 1283:006057cf8f16

History | View | Annotate | Download (2.51 KB)

1
<h2><%=l(:label_publication_show)%></h2>
2

    
3
<div class="box">
4
  <h3>Publication Info</h3>
5
  <p><%= print_ieee_format(@publication)%></p>
6

    
7
  <h3>B<small>IB</small>T<sub>E</sub>X Format</h3>
8
  <pre><%=h print_bibtex_format(@publication) %></pre>
9
</div>
10

    
11
<div class="box">
12

    
13
<h4><%= l(:authors) %></h4>
14
<ul id="authorships">
15
  <% for authorship in @publication.authorships.find(:all, :order => :auth_order) %>
16
    <% content_tag_for :li, authorship do %>
17
      <%- if User.current.allowed_to?(:edit_publication, @project) && @publication.authorships.length > 1 -%>
18
        <span class="handle">[drag to reorder]</span>
19
      <%- end -%>
20
      <%= link_to_authorship authorship %> <em><%= h authorship.institution %></em> <br />
21
    <%- end -%>
22
  <%- end -%>
23
</ul>
24

    
25
<%- if User.current.allowed_to?(:edit_publication, @project) && @publication.authorships.length > 1 -%>
26
  <%= sortable_element("authorships", :url => { :controller => :publications, :action => :sort_author_order }, :handle => "handle") %>
27
<%- end -%>
28

    
29
<%- if @publication.bibtex_entry != nil -%>
30
  <%= show_bibtex_fields(@publication.bibtex_entry) %>
31
<%- end -%>
32

    
33
<%- unless @publication.external_url.blank? -%>
34
  <p>
35
    <b><%= l(:field_external_url) %>:</b> <%= link_to h(@publication.external_url), @publication.external_url, {:target => "_blank"} -%>
36
  </p>
37
<%- end -%>
38

    
39

    
40
<% unless @publication.doi.blank? %>
41
  <p>
42
    <b><%= l(:field_doi)-%>:</b> <%= link_to h(@publication.doi), "http://dx.doi.org/#{@publication.doi}", {:target => "_blank"} -%>
43
  </p>
44
<% end %>
45

    
46
<br / >
47
  <% if User.current.allowed_to?(:add_publication, @project) %>
48
    <%= link_to l(:label_publication_edit), { :controller => "publications", :action => "edit", :id => @publication, :project_id => @project } %> |
49
    <%= link_to "Delete", {:controller => 'publications', :action => 'destroy', :id => @publication, :project_id => @project },
50
                                                     :confirm => l(:text_are_you_sure), :method => :delete, :title => l(:button_delete) %> |
51
  <% end %>
52
  <%= link_to l(:view_all_publications), {:controller => 'publications', :action => 'index', :project_id => @project } %>
53
</div>
54

    
55
<% projects = Project.active.find(:all, :limit => 100, :order => 'name ASC') - @publication.projects %>
56

    
57
<% content_for :sidebar do %>
58
  <h3><%=l(:label_publication_project_index)%></h3>
59

    
60
  <p id="list_projects">
61
    <%= render :partial => 'list_projects' %>
62
  </p>
63

    
64
  <%- if User.current.allowed_to?(:edit_publication, @project) -%>
65
    <%= render :partial => 'add_project_form' %>
66
  <%- end -%>
67
<% end %>