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 @ 452:34a6cf259682

History | View | Annotate | Download (504 Bytes)

1
<% form_for @publication do |f| -%>
2
  <%= f.error_messages %>
3
  
4
  <p><%= f.label :title, l(:title) %>  <%= f.text_field :title %></p>
5

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

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

    
17
  <%= f.submit %>
18

    
19
<% end -%>