X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/1cded7d151f6af733c3760815a00b0a259d9ba17..c3ad6aa2923c03aeeea0b57033b0a9238d262aa2:/app/views/browse/changeset.html.erb
diff --git a/app/views/browse/changeset.html.erb b/app/views/browse/changeset.html.erb
index 1970f568d..9fc7ec548 100644
--- a/app/views/browse/changeset.html.erb
+++ b/app/views/browse/changeset.html.erb
@@ -1,62 +1,143 @@
-
-<% 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 %>
-
+<% 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 %>
- <%= render :partial => 'paging_nav', :locals => { :pages => @relation_pages, :page_param => "relation_page" } %>
<% end %>
-
- - <%= 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.changesetxml'), :controller => "changeset", :action => "read") %>
+ ·
+ <%= link_to(t('browse.changeset.osmchangexml'), :controller => "changeset", :action => "download") %>
+