Rename views to rails 2 style names.
This commit is contained in:
parent
a8c7d1c4ce
commit
2e2f212472
91 changed files with 2 additions and 6 deletions
21
app/views/browse/changeset.html.erb
Normal file
21
app/views/browse/changeset.html.erb
Normal file
|
@ -0,0 +1,21 @@
|
|||
<table width="100%">
|
||||
<tr>
|
||||
<td>
|
||||
<h2><%= t 'browse.changeset.changeset' %> <%= h(@changeset.id) %></h2>
|
||||
</td>
|
||||
<td>
|
||||
<%= render :partial => "navigation" %>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>
|
||||
<%= render :partial => "changeset_details", :object => @changeset %>
|
||||
<hr />
|
||||
<%= t 'browse.changeset.download', :changeset_xml_link => link_to(t('browse.changeset.changesetxml'), :controller => "changeset", :action => "read"),
|
||||
:osmchange_xml_link => link_to(t('browse.changeset.osmchangexml'), :controller => "changeset", :action => "download") %>
|
||||
</td>
|
||||
<% if @changeset.has_valid_bbox? %>
|
||||
<%= render :partial => "map", :object => @changeset %>
|
||||
<% end %>
|
||||
</tr>
|
||||
</table>
|
Loading…
Add table
Add a link
Reference in a new issue