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 / _form.html.erb @ 1024:503ed68a4e0f

History | View | Annotate | Download (834 Bytes)

1
<%= f.error_messages %>  
2

    
3
<h3><%= f.text_field :title, :required => true, :size => 70 %></h3>
4

    
5
<div class="splitcontentleft">      
6
  <h3><%= l(:label_publication_other_details) %></h3>
7
  <div class="box tabular">
8
    <% f.fields_for :bibtex_entry do |builder| -%>
9
      <%= render :partial => 'bibtex_fields', :locals => { :f => builder}  %>
10
    <%- end -%>
11

    
12
    <p>
13
      <%= f.text_field :external_url, :size => 70 %>
14
      <br />
15
      <em><%= l(:text_external_url) %></em>
16
    </p>
17

    
18
  </div>
19
</div>
20

    
21
<div class="splitcontentright">
22
  <h3><%= l(:authors) %></h3>    
23
  <div class="box tabular">
24
    <% f.fields_for :authorships do |builder| -%>
25
      <%= render "authorship_fields", :f => builder %>
26
    <%- end -%>
27
    <%= link_to_add_author_fields l(:label_add_an_author), f, :authorships, params[:action] %>
28
  </div>
29
</div>
30

    
31