diff -r d643b4186e4c -r 34a6cf259682 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
@@ -3,6 +3,6 @@
 <%= render :partial => 'edit' %>
 
 <p>
-  <%= link_to :show %></p>
-
-
+  <%= link_to "Show", @publication %> |
+  <%= link_to "View All", publications_path %>
+</p>
diff -r d643b4186e4c -r 34a6cf259682 vendor/plugins/redmine_bibliography/app/views/publications/show.html.erb
--- a/vendor/plugins/redmine_bibliography/app/views/publications/show.html.erb
+++ b/vendor/plugins/redmine_bibliography/app/views/publications/show.html.erb
@@ -19,3 +19,11 @@
 <%- end -%>
 
 
+
+<p>
+  <%= link_to "Edit", edit_publication_path(@publication) %> |
+  <%= link_to "Destroy", @publication, :confirm => 'Are you sure?', :method => :delete %> |
+  <%= link_to "View All", publications_path %>
+</p>
+
+
