diff -r de7c31d4cf9a -r 9cfd7a1d848e vendor/plugins/redmine_bibliography/app/views/publications/edit.html.erb
--- a/vendor/plugins/redmine_bibliography/app/views/publications/edit.html.erb
+++ b/vendor/plugins/redmine_bibliography/app/views/publications/edit.html.erb
@@ -1,1 +1,49 @@
 <h2>Publications#edit</h2>
+
+<% form_for @publication, :url => {:action => :edit} do |f| -%>
+  <%= f.error_messages %>
+  <p>
+    <%= f.label :title, l(:title) %>  <%= f.text_field :title %>  
+  </p>
+  
+
+  <h3><%= l(:authors) -%></h3>
+  
+  <% f.fields_for :authors do |author| %>
+    <p>
+      <%= author.label :name, l("name") %> <%= author.text_field :name %>            
+    </p>
+    
+  <% end %>
+  
+  
+  <% f.fields_for @publication.bibtex_entry do |b| -%>
+    <p> 
+      <%= b.label :year, l(:year) %>  <%= b.text_field :year %>  
+    </p>
+    <p> 
+      <%= b.label :chapter, l(:chapter) %>  <%= b.text_field :chapter %>  
+    </p>
+    <p>  
+      <%= b.label :editor, l(:editor) %>  <%= b.text_field :editor %>  
+    </p>
+    <p> 
+      <%= b.label :booktitle, l(:booktitle) %>  <%= b.text_field :booktitle %>  
+    </p>
+    <p> 
+      <%= b.label :publisher, l(:publisher) %>  <%= b.text_field :publisher %>  
+    </p>
+    <p> 
+      <%= b.label :pages, l(:pages) %>  <%= b.text_field :pages %>  
+    </p>
+  <% end -%>
+
+
+
+  <%= f.submit "Submit" %>
+
+
+
+
+
+<% end -%>
\ No newline at end of file
