X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/ba9456066f74814fe4e8929a4467caa2c5c6ba9f..0b0ff1bcc57efb79a1aa2d962fb3cfc64fe69845:/app/views/browse/changeset.html.erb
diff --git a/app/views/browse/changeset.html.erb b/app/views/browse/changeset.html.erb
index 1227c0dd6..86d190680 100644
--- a/app/views/browse/changeset.html.erb
+++ b/app/views/browse/changeset.html.erb
@@ -1,65 +1,135 @@
-
-<% unless @relations.empty? %>
-
-
<%= t 'browse.changeset_details.has_relations', :count => @relation_pages.item_count %>
-
- <% @relations.each do |relation| %>
- - <%= link_to h(printable_name(relation, true)), { :action => "relation", :id => relation.relation_id.to_s }, :class => link_class('relation', relation), :title => link_title(relation) %>
- <% end %>
-
- <%= render :partial => 'paging_nav', :locals => { :pages => @relation_pages, :page_param => "relation_page" } %>
+<% if @next_by_user || @prev_by_user %>
+
+ <% if @prev_by_user %>
+ <%= link_to "<< #{@prev_by_user.id}", :id => @prev_by_user.id %>
+ ·
+ <% end %>
+ <%=
+ user = (@prev_by_user || @next_by_user).user.display_name
+ link_to content_tag(:bdi, user), :controller => "changeset", :action => "list", :display_name => user
+ %>
+ <% if @next_by_user %>
+ ·
+ <%= link_to "#{@next_by_user.id} >>", :id => @next_by_user.id %>
+ <% end %>
<% end %>
-
-
<%= link_to(t('browse.changeset.changesetxml'), :controller => "changeset", :action => "read") %>
+
+ <%= link_to(t('browse.changeset.changesetxml'), :controller => "changeset", :action => "read") %>
·
- <%= link_to(t('browse.changeset.osmchangexml'), :controller => "changeset", :action => "download") %>
+ <%= link_to(t('browse.changeset.osmchangexml'), :controller => "changeset", :action => "download") %>