Simplified common details
This commit is contained in:
parent
1cded7d151
commit
fc5998d493
3 changed files with 23 additions and 31 deletions
|
@ -1000,7 +1000,7 @@ a.donate {
|
|||
width: 50%;
|
||||
height: 30px;
|
||||
float: left;
|
||||
padding: 9px 10px;
|
||||
padding: 6px 10px;
|
||||
}
|
||||
|
||||
.browse-tag-k {
|
||||
|
|
|
@ -1,39 +1,32 @@
|
|||
<div class='browse-section common'>
|
||||
<div class='browse-field'>
|
||||
<div>
|
||||
<% if common_details.visible? %>
|
||||
<h4><%= t 'browse.common_details.edited_at' %></h4>
|
||||
<%= t 'browse.common_details.edited' %>
|
||||
<% else %>
|
||||
<h4><%= t 'browse.common_details.deleted_at' %></h4>
|
||||
<%= t 'browse.common_details.deleted' %>
|
||||
<% end %>
|
||||
<abbr><%= distance_of_time_in_words_to_now(common_details.timestamp) %> ago</abbr>
|
||||
|
||||
<% if common_details.changeset.user.data_public? %>
|
||||
<%= t 'browse.common_details.by' %>
|
||||
<%= link_to h(common_details.changeset.user.display_name), :controller => "user", :action => "view", :display_name => common_details.changeset.user.display_name %>
|
||||
<% end %>
|
||||
<p><%= l common_details.timestamp %></p>
|
||||
</div>
|
||||
|
||||
<% if common_details.changeset.user.data_public? %>
|
||||
<div class='browse-field'>
|
||||
<% if common_details.visible? %>
|
||||
<h4><%= t 'browse.common_details.edited_by' %></h4>
|
||||
<% else %>
|
||||
<h4><%= t 'browse.common_details.deleted_by' %></h4>
|
||||
<% end %>
|
||||
<p><%= link_to h(common_details.changeset.user.display_name), :controller => "user", :action => "view", :display_name => common_details.changeset.user.display_name %></p>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<div class='browse-field'>
|
||||
<h4><%= t 'browse.common_details.version' %></h4>
|
||||
<p><%= h(common_details.version) %></p>
|
||||
</div>
|
||||
|
||||
<div class='browse-field'>
|
||||
<h4><%= t 'browse.common_details.in_changeset' %></h4>
|
||||
<p><%= link_to common_details.changeset_id, :action => :changeset, :id => common_details.changeset_id %></p>
|
||||
<div>
|
||||
<%= t 'browse.common_details.version' %>
|
||||
#<%= h(common_details.version) %>
|
||||
·
|
||||
<%= t 'browse.common_details.in_changeset' %>
|
||||
#<%= link_to common_details.changeset_id, :action => :changeset, :id => common_details.changeset_id %>
|
||||
</div>
|
||||
|
||||
<% if common_details.changeset.tags['comment'].present? %>
|
||||
<div class='browse-field'>
|
||||
<h4><%= t 'browse.common_details.changeset_comment' %></h4>
|
||||
<p><%= linkify(h(common_details.changeset.tags['comment'])) %></p>
|
||||
<div>
|
||||
<%= t 'browse.common_details.changeset_comment' %>:
|
||||
<%= linkify(h(common_details.changeset.tags['comment'])) %>
|
||||
</div>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
<%= render :partial => "tag_details", :object => common_details %>
|
||||
|
|
|
@ -134,10 +134,9 @@ en:
|
|||
has_ways: "Ways (%{count})"
|
||||
has_relations: "Relations (%{count})"
|
||||
common_details:
|
||||
edited_at: "Edited At"
|
||||
edited_by: "Edited By"
|
||||
deleted_at: "Deleted At"
|
||||
deleted_by: "Deleted By"
|
||||
edited: "Edited"
|
||||
deleted: "Deleted"
|
||||
by: "by"
|
||||
version: "Version"
|
||||
in_changeset: "Changeset"
|
||||
changeset_comment: "Comment"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue