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 / projects / _bibliography_box.html.erb @ 1361:7c0909052511

History | View | Annotate | Download (1.2 KB)

1 1017:63f8c4f2cf67 luis
<% content_for :header_tags do %>
2
    <%= stylesheet_link_tag 'bibliography', :plugin => 'redmine_bibliography' %>
3
    <%= javascript_include_tag 'bibtex', :plugin => 'redmine_bibliography' -%>
4
<% end %>
5
6 646:e01aa4ccc0a2 chris
<% if @project.publications.any? %>
7 645:b83173d26d86 chris
<%= stylesheet_link_tag 'bibliography', :plugin => 'redmine_bibliography' %>
8
  <div id="bibliography">
9
    <div class="box">
10
    <h3><%=l(:label_related_publication_plural)%></h3>
11
12 1068:e11d8d13ebc5 luis
     <dl>
13
     <% @project.publications.each do |publication| %>
14 1017:63f8c4f2cf67 luis
       <dt>
15 1068:e11d8d13ebc5 luis
          <%= print_ieee_format(publication) %>
16 1017:63f8c4f2cf67 luis
       </dt>
17
       <dd>
18 1313:17f075c7fd41 luis
         <%= link_to(l("more_details_link"), {:controller => :publications, :action => :show, :id => publication.id, :project_id => @project.id}) -%>
19 1068:e11d8d13ebc5 luis
20 1313:17f075c7fd41 luis
         <%= link_to l(:bibtex_link).html_safe, "javascript:void(0)", :class => "bibtex-link"-%>
21 1352:939f4a491900 luis
22
        <%- unless publication.external_url.blank? -%>
23
            <%= link_to l(:external_url_link), publication.external_url, {:target => "_blank"} -%>
24
        <%- end -%>
25
26
27 1017:63f8c4f2cf67 luis
       </dd>
28
       <dd class="bibtex-textarea collapsed" style="display: none;">
29 1317:2805873c0147 luis
         <textarea readonly> <%= print_bibtex_format(publication) -%> </textarea>
30 1017:63f8c4f2cf67 luis
       </dd>
31 645:b83173d26d86 chris
   <% end -%>
32 1017:63f8c4f2cf67 luis
     </dl>
33 465:5123e3a1c9cb luis
  </div>
34 645:b83173d26d86 chris
</div>
35 1017:63f8c4f2cf67 luis
<% end -%>