Extend work started in [15970] to add edit link to way pages on databrowser.

This commit is contained in:
Thomas Wood 2009-06-18 14:29:28 +00:00
parent 84762011cd
commit 80ff70a1ff
3 changed files with 8 additions and 2 deletions

View file

@ -16,7 +16,9 @@
<%= render :partial => "way_details", :object => @way %>
<hr />
<%= t'browse.way.download', :download_xml_link => link_to(t('browse.way.download_xml'), :controller => "way", :action => "read"),
:view_history_link => link_to(t('browse.way.view_history'), :action => "way_history") %>
:view_history_link => link_to(t('browse.way.view_history'), :action => "way_history"),
:edit_link => link_to(t('browse.way.edit'), :controller => "site", :action => "edit", :way => @way.id, :lat => @midnode.lat, :lon => @midnode.lon, :zoom => 16)
%>
</td>
<%= render :partial => "map", :object => @way %>
</tr>