X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/694fa065c0c943664072a80b552d4985967176f9..b0a741412f3ea330272c827cf4a9c577498f8de9:/app/views/browse/changeset.html.erb diff --git a/app/views/browse/changeset.html.erb b/app/views/browse/changeset.html.erb index b9b37da47..4045c0b48 100644 --- a/app/views/browse/changeset.html.erb +++ b/app/views/browse/changeset.html.erb @@ -1,57 +1,139 @@ -

<%= t 'browse.changeset.changeset', :id => @changeset.id %> - -

+<% set_title(t(".title", :id => @changeset.id)) %> + +<%= render "sidebar_header", :title => t(".title", :id => @changeset.id) %> +
-

- <%= - @changeset.tags['comment'].to_s.presence || t('browse.changeset_details.no_comment') - %> +

+ <%= linkify(@changeset.tags["comment"].to_s.presence || t("browse.no_comment")) %>

- <%= changeset_time_ago(@changeset) %> -
- -<%= - render :partial => "tag_details", :object => @changeset.tags.except('comment') -%> - -<% unless @nodes.empty? %> -
-

<%= t 'browse.changeset_details.has_nodes', :count => @node_pages.item_count %>

- - <%= render :partial => 'paging_nav', :locals => { :pages => @node_pages, :page_param => "node_page"} %> +

<%= changeset_details(@changeset) %>

+ + <%= render :partial => "tag_details", :object => @changeset.tags.except("comment") %> + +
+
+

<%= t(".discussion") %>

+
+ + <% if current_user %> +
+ +
+ <% end %>
-<% end %> -<% unless @ways.empty? %> -
-

<%= t 'browse.changeset_details.has_ways', :count => @way_pages.item_count %>

-
-<% end %> + <% end %> + + <% unless @relations.empty? %> + <%= render :partial => "paging_nav", :locals => { :heading => type_and_paginated_count("relation", @relation_pages), :pages => @relation_pages, :page_param => "relation_page" } %> + + <% end %> + + <% unless @nodes.empty? %> + <%= render :partial => "paging_nav", :locals => { :heading => type_and_paginated_count("node", @node_pages), :pages => @node_pages, :page_param => "node_page" } %> + + <% end %> +
-<% unless @relations.empty? %> -
-

<%= t 'browse.changeset_details.has_relations', :count => @relation_pages.item_count %>

- - <%= 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 tag.bdi(user), :controller => "changesets", :action => "index", :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(".changesetxml"), :controller => "api/changesets", :action => "show") %> · - <%= link_to(t('browse.changeset.osmchangexml'), :controller => "changeset", :action => "download") %>

+ <%= link_to(t(".osmchangexml"), :controller => "api/changesets", :action => "download") %>