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 / vendor / plugins / redmine_bibliography / app / views / publications / _edit.html.erb @ 461:841b2e40895d

History | View | Annotate | Download (567 Bytes)

1
<% form_for @publication, :url => { :project_id  => @project_id, :action => :create } do |f| -%>
2

    
3
  <%= f.error_messages %>
4
  
5
  <p><%= f.label :title, l(:title) %>  <%= f.text_field :title %></p>
6

    
7
  <h3><%= l(:authors) %></h3>  
8
  <%- f.fields_for :authors do |builder| -%>
9
    <%= render :partial => 'authors_fields', :locals => { :f => builder} %>
10
  <%- end -%>
11
    
12
  <h3>Other Details</h3>
13

    
14
  <% f.fields_for :bibtex_entry do |builder| -%>
15
    <%= render :partial => 'bibtex_fields', :locals => { :f => builder}  %>
16
  <%- end -%>
17

    
18

    
19
  <%= f.submit %>
20

    
21
<% end -%>