X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/baaacfc7c08d8c5df5e67f4fafdbddf4e440c39d..8e21e4e80156a1fc29d7b283b254ff623ca844b6:/app/views/browse/changeset.html.erb diff --git a/app/views/browse/changeset.html.erb b/app/views/browse/changeset.html.erb index 08979c283..ee8eee66e 100644 --- a/app/views/browse/changeset.html.erb +++ b/app/views/browse/changeset.html.erb @@ -1,77 +1,144 @@ -

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

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

- <%= - if @changeset.tags['comment'].to_s != '' - @changeset.tags['comment'].to_s - else - t ('browse.changeset_details.no_comment') - end - %> +

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

-

- <% - created_at = distance_of_time_in_words_to_now(@changeset.created_at) - closed_at = distance_of_time_in_words_to_now(@changeset.closed_at) - if created_at == closed_at - %> - <%= t 'browse.changeset_details.closed_at' %> - - <%= t('browse.changeset_details.ago', :ago => created_at) %> - <% else %> - <%= t 'browse.changeset_details.created_at' %> <%= t('browse.changeset_details.ago', :ago => created_at) %>, - <%= t 'browse.changeset_details.closed_at' %> <%= t('browse.changeset_details.ago', :ago => closed_at) %> - <% end %> - <% if @changeset.user.data_public? %> - by <%= link_to h(@changeset.user.display_name), :controller => "user", :action => "view", :display_name => @changeset.user.display_name %> +

<%= changeset_details(@changeset) %>

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

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

+
+ + <% if current_user %> +
+ <% if @changeset.subscribers.exists?(current_user.id) %> + + <% else %> + + <% end %> +
<% end %> -

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

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

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

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

-
-<% end %> + <% end %> -<% unless @relations.empty? %> -
-

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

-
-<% end %> + <% end %> + + <% 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 %> + -
-

<%= 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") %>
+ +<% if @next_by_user || @prev_by_user %> +
+ <% if @prev_by_user %> + <%= link_to({ :id => @prev_by_user.id }, :class => "icon-link") do %> + <%= previous_page_svg_tag :height => 11 %> + <%= @prev_by_user.id %> + <% end %> + · + <% 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({ :id => @next_by_user.id }, :class => "icon-link") do %> + <%= @next_by_user.id %> + <%= next_page_svg_tag :height => 11 %> + <% end %> + <% end %> +
+<% end %>