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 @ 428:9cfd7a1d848e

History | View | Annotate | Download (1.04 KB)

1 328:aed18b463206 luis
<h2>Publications#edit</h2>
2 428:9cfd7a1d848e luis
3
<% form_for @publication, :url => {:action => :edit} do |f| -%>
4
  <%= f.error_messages %>
5
  <p>
6
    <%= f.label :title, l(:title) %>  <%= f.text_field :title %>
7
  </p>
8
9
10
  <h3><%= l(:authors) -%></h3>
11
12
  <% f.fields_for :authors do |author| %>
13
    <p>
14
      <%= author.label :name, l("name") %> <%= author.text_field :name %>
15
    </p>
16
17
  <% end %>
18
19
20
  <% f.fields_for @publication.bibtex_entry do |b| -%>
21
    <p>
22
      <%= b.label :year, l(:year) %>  <%= b.text_field :year %>
23
    </p>
24
    <p>
25
      <%= b.label :chapter, l(:chapter) %>  <%= b.text_field :chapter %>
26
    </p>
27
    <p>
28
      <%= b.label :editor, l(:editor) %>  <%= b.text_field :editor %>
29
    </p>
30
    <p>
31
      <%= b.label :booktitle, l(:booktitle) %>  <%= b.text_field :booktitle %>
32
    </p>
33
    <p>
34
      <%= b.label :publisher, l(:publisher) %>  <%= b.text_field :publisher %>
35
    </p>
36
    <p>
37
      <%= b.label :pages, l(:pages) %>  <%= b.text_field :pages %>
38
    </p>
39
  <% end -%>
40
41
42
43
  <%= f.submit "Submit" %>
44
45
46
47
48
49
<% end -%>