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 @ 1075:2cc9845228b3

History | View | Annotate | Download (1.92 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
                :onChange => remote_function( :url => { :controller => :publications, :action => :get_bibtex_required_fields}, :with => "'value=' + value" )                      
9
        %>
10
</p>
11

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