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 / new.html.erb @ 1408:b09744f35f76

History | View | Annotate | Download (1.11 KB)

1
<% content_for :header_tags do %>
2
    <%= javascript_include_tag 'authors', :plugin => 'redmine_bibliography' %>
3
    <%= stylesheet_link_tag 'bibliography', :plugin => 'redmine_bibliography' %>
4
    <%= javascript_include_tag 'bibliography', :plugin => 'redmine_bibliography' -%>
5
    <%= javascript_include_tag 'new_publication', :plugin => 'redmine_bibliography' -%>
6
    <%= javascript_tag "
7
      $('#publication_bibtex_entry_attributes_entry_type').live('change', function() {
8
          $this = $(this);
9
          $.ajax({
10
              type: 'get',
11
              url: '#{url_for(:controller => :publications, :action => :show_bibtex_fields)}',
12
              data: {
13
                  value: $this.val()
14
              },
15
              dataType: 'script'
16
          });
17
          return false;
18
      });"-%>
19

    
20
<% end %>
21

    
22
<%= error_messages_for 'publication' %>
23

    
24
<h2><%=l(:label_publication_new)%></h2>
25

    
26
<%= labelled_form_for @publication, :url => { :project_id  => @project, :action => :create } do |f| -%>
27

    
28
    <%= render :partial => 'form', :locals => { :f => f }  %>
29

    
30
    <div style="clear:both"></div>
31
    <%= f.submit %>
32
<% end %>