diff -r 6674e52e20bf -r 80cf86be1611 vendor/plugins/redmine_bibliography/app/views/publications/parse_bibtex.rjs
--- a/vendor/plugins/redmine_bibliography/app/views/publications/parse_bibtex.rjs
+++ b/vendor/plugins/redmine_bibliography/app/views/publications/parse_bibtex.rjs
@@ -1,8 +1,14 @@
 if @bibtex_parse_success
   page.insert_html :bottom, :ieee_prev, @ieee_prev
   page.insert_html :top, :content, '<div class="flash notice">Successfully Parsed BibTeX</div>'
+
+  @bibtex_parsed_authors.each do |auth|
+    page.insert_html :bottom, :suggest_bibtex_authors, :partial => "suggest_author" , :locals => {:author => auth}
+  end
+
 else
   page.insert_html :top, :content, '<div class="flash error">Error parsing BibTeX.</div>'
 end
 
+
 flash.discard
\ No newline at end of file
