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 @ 1391:8580d1d1150e

History | View | Annotate | Download (1.7 KB)

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