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 / import.html.erb @ 1376:6ba24edae331

History | View | Annotate | Download (354 Bytes)

1
<h1>New Publication</h1>
2

    
3
<% form_for @publication, :url => { :action => "create" } do |f| %>
4
  <% f.error_messages %>
5

    
6
  <%= render :partial  => "#{@publication.current_step}_bibtex_step", :locals => { :f => f }  %>
7

    
8
  <p><%= f.submit "Submit" %></p>
9
  <p><%= f.submit "Back", :name => "back_button" unless @publication.first_step? %></p>
10
  
11
<% end %>
12