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 / plugins / redmine_bibliography / app / views / publications / _bibtex_fields.html.erb @ 1424:637ee26ae557

History | View | Annotate | Download (2.22 KB)

1
<p>
2
  <label for="publication_bibtex_entry_attributes_entry_type"><%=l("field_entry_type")%> <span class="required">*</span></label>
3
        <%= f.collection_select :entry_type,
4
                BibtexEntryType.find(:all).reject { |x| x.redundant? },
5
                :id,
6
                :label,
7
                { :selected => @selected_bibtex_entry_type_id, :prompt => true } %>
8
</p>
9

    
10
<p class="bibtex hol">
11
  <%= f.label :year %><%= f.text_field :year, :size => 5 -%>
12
</p>
13
<p class="bibtex hol">
14
  <%= f.label :month %><%= f.text_field :month, :size => 5 -%>
15
</p>
16
<p class="bibtex hol">
17
  <%= f.label :chapter %><%= f.text_field :chapter, :size => 5 -%>
18
</p>
19
<p class="bibtex hol">
20
  <%= f.label :editor %><%= f.text_field :editor -%>
21
</p>
22
<p class="bibtex hol">
23
  <%= f.label :booktitle %><%= f.text_field :booktitle -%>
24
</p>
25
<p class="bibtex hol">
26
  <%= f.label :publisher %><%= f.text_field :publisher -%>
27
</p>
28
<p class="bibtex hol">
29
  <%= f.label :pages %><%= f.text_field :pages, :size => 5 -%>
30
</p>
31
<p class="bibtex hol">
32
 <%= f.label :address %><%= f.text_field :address -%>
33
</p>
34
<p class="bibtex hol">
35
 <%= f.label :annote %><%= f.text_field :annote -%>
36
</p>
37
<p class="bibtex hol">
38
 <%= f.label :crossref %><%= f.text_field :crossref -%>
39
</p>
40
<p class="bibtex hol">
41
 <%= f.label :edition %><%= f.text_field :edition -%>
42
</p>
43
<p class="bibtex hol">
44
 <%= f.label :eprint %><%= f.text_field :eprint -%>
45
</p>
46
<p class="bibtex hol">
47
 <%= f.label :howpublished %><%= f.text_field :howpublished -%>
48
</p>
49
<p class="bibtex hol">
50
 <%= f.label :journal %><%= f.text_field :journal -%>
51
</p>
52
<p class="bibtex hol">
53
 <%= f.label :key %><%= f.text_field :key -%>
54
</p>
55
<p class="bibtex hol">
56
 <%= f.label :note %><%= f.text_field :note -%>
57
</p>
58
<p class="bibtex hol">
59
 <%= f.label :number %><%= f.text_field :number, :size => 5 -%>
60
</p>
61
<p class="bibtex hol">
62
 <%= f.label :organization %><%= f.text_field :organization %>
63
</p>
64
<p class="bibtex hol">
65
 <%= f.label :school %><%= f.text_field :school %>
66
</p>
67
<p class="bibtex hol">
68
 <%= f.label :series %><%= f.text_field :series %>
69
</p>
70
<p class="bibtex hol">
71
 <%= f.label :type %><%= f.text_field :type %>
72
</p>
73
<p class="bibtex hol">
74
 <%= f.label :url %><%= f.text_field :url %>
75
</p>
76
<p class="bibtex hol">
77
 <%= f.label :volume %><%= f.text_field :volume %>
78
</p>