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 / edit.html.erb @ 1381:5b8bd53fd65c

History | View | Annotate | Download (892 Bytes)

1 545:a2c2b9f8380b luis
<% content_for :header_tags do %>
2
    <%= javascript_include_tag 'authors', :plugin => 'redmine_bibliography' %>
3 1326:8516c3292901 luis
    <%= stylesheet_link_tag 'bibliography', :plugin => 'redmine_bibliography' %>
4 1376:6ba24edae331 luis
    <%= javascript_tag "$(document).ready(function() { $('#publication_bibtex_entry_attributes_entry_type').trigger('change'); });" %>
5 545:a2c2b9f8380b luis
<% end %>
6 428:9cfd7a1d848e luis
7 545:a2c2b9f8380b luis
<h2><%=l(:label_publication_show)%></h2>
8 428:9cfd7a1d848e luis
9 1326:8516c3292901 luis
<%= labelled_form_for @publication, :url => { :project_id  => @project, :action => :update } do |f| -%>
10 545:a2c2b9f8380b luis
  <%= render :partial => 'form', :locals => { :f => f }  %>
11 610:e9274ba9c1b3 luis
12 573:aed210f6095b chris
  <div style="clear:both"></div>
13 547:56ad0c490f5e luis
  <%= f.submit %>
14 545:a2c2b9f8380b luis
<% end %>
15 429:27930c9b424d luis
<p>
16 609:3221b2ab7804 luis
  <%= link_to l(:label_publication_show), { :controller => "publications", :action => "show", :id => @publication, :project_id => @project_id } %> |
17 547:56ad0c490f5e luis
  <%= link_to l(:label_publication_index), { :controller => "publications", :action => "index", :project_id => @project } %>
18 452:34a6cf259682 luis
</p>