When I navigate to /browse/{node,way,relation}/:id/history there's no
link that will take me back to /browse/{node,way,relation}/:id So I'm adding it.
This commit is contained in:
parent
87497a9042
commit
9b780a689b
3 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
|||
@name = printable_name @node
|
||||
@title = t('browse.node_history.node_history') + ' | ' + @name
|
||||
%>
|
||||
<h2><%= t'browse.node_history.node_history_title', :node_name => h(@name) %></h2>
|
||||
<h2><%= t'browse.node_history.node_history_title', :node_name => link_to(h(@name), :action => "node", :id => @node.id) %></h2>
|
||||
|
||||
<table width="100%">
|
||||
<tr valign="top">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
@name = printable_name @relation
|
||||
@title = t('browse.relation_history.relation_history') + ' | ' + @name
|
||||
%>
|
||||
<h2><%= t'browse.relation_history.relation_history_title', :relation_name => h(@name) %></h2>
|
||||
<h2><%= t'browse.relation_history.relation_history_title', :relation_name => link_to(h(@name), :action => "relation", :id => @relation.id) %></h2>
|
||||
|
||||
<table width="100%">
|
||||
<tr valign="top">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
@name = printable_name @way
|
||||
@title = t('browse.way_history.way_history') + ' | ' + @name
|
||||
%>
|
||||
<h2><%= t'browse.way_history.way_history_title', :way_name => h(@name) %></h2>
|
||||
<h2><%= t'browse.way_history.way_history_title', :way_name => link_to(h(@name), :action => "way", :id => @way.id) %></h2>
|
||||
|
||||
<table width="100%">
|
||||
<tr valign="top">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue