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 @ 1426:7367cd232b1e

History | View | Annotate | Download (1.23 KB)

1 545:a2c2b9f8380b luis
<% content_for :header_tags do %>
2
    <%= javascript_include_tag 'authors', :plugin => 'redmine_bibliography' %>
3 619:4ede44d53f76 chris
    <%= stylesheet_link_tag 'bibliography', :plugin => 'redmine_bibliography' %>
4 1391:8580d1d1150e luis
    <%= javascript_include_tag 'bibliography', :plugin => 'redmine_bibliography' -%>
5
    <%= javascript_include_tag 'new_publication', :plugin => 'redmine_bibliography' -%>
6 1409:3cb633d4b37d luis
7 1391:8580d1d1150e luis
    <%= javascript_tag "
8
      $('#publication_bibtex_entry_attributes_entry_type').live('change', function() {
9
          $this = $(this);
10
          $.ajax({
11
              type: 'get',
12
              url: '#{url_for(:controller => :publications, :action => :show_bibtex_fields)}',
13
              data: {
14
                  value: $this.val()
15
              },
16
              dataType: 'script'
17
          });
18
          return false;
19
      });"-%>
20
21 1409:3cb633d4b37d luis
  <%= javascript_tag "authorship_autocomplete('#{url_for :controller => :publications, :action => :autocomplete_for_author}');" -%>
22
23 545:a2c2b9f8380b luis
<% end %>
24 329:4575b631f6ce luis
25 1391:8580d1d1150e luis
<%= error_messages_for 'publication' %>
26
27 545:a2c2b9f8380b luis
<h2><%=l(:label_publication_new)%></h2>
28
29 1422:c97b3b9b5c86 luis
<%= form_for @publication, :url => { :project_id  => @project, :action => :create } do |f| -%>
30 1391:8580d1d1150e luis
31 1274:5ea1a213c7a5 luis
    <%= render :partial => 'form', :locals => { :f => f }  %>
32 1391:8580d1d1150e luis
33 1274:5ea1a213c7a5 luis
    <div style="clear:both"></div>
34
    <%= f.submit %>
35 578:c8552c08687f chris
<% end %>