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 @ 812:b5474c68c433

History | View | Annotate | Download (834 Bytes)

1 573:aed210f6095b chris
<%= f.error_messages %>
2 610:e9274ba9c1b3 luis
3 615:c4ddb9531f4c chris
<h3><%= f.text_field :title, :required => true, :size => 70 %></h3>
4 545:a2c2b9f8380b luis
5 615:c4ddb9531f4c chris
<div class="splitcontentleft">
6
  <h3><%= l(:label_publication_other_details) %></h3>
7 610:e9274ba9c1b3 luis
  <div class="box tabular">
8
    <% f.fields_for :bibtex_entry do |builder| -%>
9
      <%= render :partial => 'bibtex_fields', :locals => { :f => builder}  %>
10
    <%- end -%>
11 658:65749e700af0 luis
12
    <p>
13
      <%= f.text_field :external_url, :size => 70 %>
14
      <br />
15
      <em><%= l(:text_external_url) %></em>
16
    </p>
17
18 610:e9274ba9c1b3 luis
  </div>
19 573:aed210f6095b chris
</div>
20 545:a2c2b9f8380b luis
21 615:c4ddb9531f4c chris
<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 705:b6f9f005c0b6 luis
    <%= link_to_add_author_fields l(:label_add_an_author), f, :authorships, params[:action] %>
28 615:c4ddb9531f4c chris
  </div>
29
</div>
30 545:a2c2b9f8380b luis