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 / _bibtex_fields.html.erb @ 1043:8cfa9b743559

History | View | Annotate | Download (1.9 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
                { :prompt => true }
8
        %>
9
</p>
10

    
11

    
12
<%= observe_field :publication_bibtex_entry_attributes_entry_type, :url => { :controller => :publications, :action => :get_bibtex_required_fields },
13
     :frequency => 0.25,
14
     :with => 'q'
15
     %>
16

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