diff --git a/app/views/snippets/show.html.haml b/app/views/snippets/show.html.haml
index f2519abea6f35fba261b09fbbca471bb91874ff6..9d20b76cbf2835c3c68a13f9b444461f9f758233 100644
--- a/app/views/snippets/show.html.haml
+++ b/app/views/snippets/show.html.haml
@@ -7,15 +7,21 @@
         .snippet-box.snippet-box-locked
           %i.fa.fa-lock
           Private
+      %span.snippet-id Snippet ##{@snippet.id}
       %span.creator
-        updated by #{link_to_member(@project, @snippet.author, size: 24)}
+        · created by #{link_to_member(@project, @snippet.author, size: 24)}
         ·
-        = time_ago_with_tooltip(@snippet.updated_at, placement: 'bottom', html_class: 'snippet_updated_ago')
+        = time_ago_with_tooltip(@snippet.created_at, placement: 'bottom', html_class: 'snippet_updated_ago')
+        - if @snippet.updated_at != @snippet.created_at
+          %span
+            ·
+            = icon('edit', title: 'edited')
+            = time_ago_with_tooltip(@snippet.updated_at, placement: 'bottom', html_class: 'snippet_edited_ago')
 
       .pull-right
         = link_to new_snippet_path, class: 'btn btn-grouped new-snippet-link', title: "New Snippet" do
           = icon('plus')
-          Add new snippet
+          new snippet
         = link_to "remove", snippet_path(@snippet), method: :delete, data: { confirm: "Are you sure?" }, class: "btn btn-grouped btn-remove", title: 'Delete Snippet'
         - if can?(current_user, :update_personal_snippet, @snippet)
           = link_to edit_snippet_path(@snippet), class: "btn btn-grouped issuabled-edit" do