openstreetmap-website/app/views/changeset/_changesets.html.erb
Ævar Arnfjörð Bjarmason e2abf1254b * Turn the hardcoded #<%= changeset.id %> into t('msg', :id =>
changeset.id). Some languages may have a different numeric
   indicator than the ASCII pound symbol

 * Instead of including a column on :user/edits with a "more" link
   make the changeset ID link to the changeset page.
2009-07-29 11:05:17 +00:00

13 lines
523 B
Text

<% showusername = true if showusername.nil? %>
<table id="changeset_list" cellpadding="3">
<tr>
<th><%= t'changeset.changesets.id' %></th>
<th><%= t'changeset.changesets.saved_at' %></th>
<% if showusername %>
<th><%= t'changeset.changesets.user' %></th>
<% end %>
<th><%= t'changeset.changesets.comment' %></th>
<th><%= t'changeset.changesets.area' %></th>
</tr>
<%= render :partial => 'changeset', :locals => {:showusername => showusername}, :collection => @edits unless @edits.nil? %>
</table>