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 @ 1375:c28ce1a71a22

History | View | Annotate | Download (840 Bytes)

1
<% content_for :header_tags do %>
2
    <%= javascript_include_tag 'authors', :plugin => 'redmine_bibliography' %>
3
    <%= javascript_include_tag 'bibliography', :plugin => 'redmine_bibliography' %>
4
    <%= stylesheet_link_tag 'bibliography', :plugin => 'redmine_bibliography' %>
5
<% end %>
6

    
7
<h2><%=l(:label_publication_show)%></h2>
8

    
9
<%= labelled_form_for @publication, :url => { :project_id  => @project, :action => :update } do |f| -%>
10
  <%= render :partial => 'form', :locals => { :f => f }  %>
11

    
12
  <div style="clear:both"></div>
13
  <%= f.submit %>
14
<% end %>
15
<p>
16
  <%= link_to l(:label_publication_show), { :controller => "publications", :action => "show", :id => @publication, :project_id => @project_id } %> |
17
  <%= link_to l(:label_publication_index), { :controller => "publications", :action => "index", :project_id => @project } %>
18
</p>