diff --git a/app/views/browse/_node_details.html.erb b/app/views/browse/_node_details.html.erb
index 45b830f04..7bbd750c9 100644
--- a/app/views/browse/_node_details.html.erb
+++ b/app/views/browse/_node_details.html.erb
@@ -1,5 +1,5 @@
<% if node_details.redacted? %>
-
<%= raw t 'browse.redacted.message', :type => t('browse.redacted.type.node'), :redaction_link => link_to(node_details.redaction) %>
+<%= raw t 'browse.redacted.message', :type => t('browse.redacted.type.node'), :redaction_link => link_to(t('browse.redacted.redaction', :id => node_details.redaction.id), node_details.redaction), :version => node_details.version %>
<% else %>
diff --git a/app/views/browse/_relation_details.html.erb b/app/views/browse/_relation_details.html.erb
index 25b5f0fca..cfa03678f 100644
--- a/app/views/browse/_relation_details.html.erb
+++ b/app/views/browse/_relation_details.html.erb
@@ -1,5 +1,5 @@
<% if relation_details.redacted? %>
-<%= raw t 'browse.redacted.message', :type => t('browse.redacted.type.relation'), :redaction_link => link_to(relation_details.redaction) %>
+<%= raw t 'browse.redacted.message', :type => t('browse.redacted.type.relation'), :redaction_link => link_to(t('browse.redacted.redaction', :id => relation_details.redaction.id), relation_details.redaction), :version => relation_details.version %>
<% else %>
diff --git a/app/views/browse/_way_details.html.erb b/app/views/browse/_way_details.html.erb
index 7a3a2a146..4d07be8c9 100644
--- a/app/views/browse/_way_details.html.erb
+++ b/app/views/browse/_way_details.html.erb
@@ -1,5 +1,5 @@
<% if way_details.redacted? %>
-<%= raw t 'browse.redacted.message', :type => t('browse.redacted.type.way'), :redaction_link => link_to(way_details.redaction) %>
+<%= raw t 'browse.redacted.message', :type => t('browse.redacted.type.way'), :redaction_link => link_to(t('browse.redacted.redaction', :id => way_details.redaction.id), way_details.redaction), :version => way_details.version %>
<% else %>
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 32ce54e6f..f909f1e5c 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -196,7 +196,8 @@ en:
showing_page: "Showing page"
of: "of"
redacted:
- message: "This %{type} version cannot be shown as it has been redacted. Please see %{redaction_link} for details."
+ redaction: "Redaction %{id}"
+ message: "Version %{version} of this %{type} cannot be shown as it has been redacted. Please see %{redaction_link} for details."
type:
node: "node"
way: "way"