]> git.openstreetmap.org Git - rails.git/blob - app/views/diary_entry/_diary_entry.html.erb
Merge remote-tracking branch 'upstream/pull/1972'
[rails.git] / app / views / diary_entry / _diary_entry.html.erb
1 <div class='diary_post'>
2   <div class='post_heading clearfix'>
3     <% if !@user %>
4       <%= user_thumbnail diary_entry.user %>
5     <% end %>
6
7     <h2><%= link_to h(diary_entry.title), :action => 'view', :display_name => diary_entry.user.display_name, :id => diary_entry.id %></h2>
8
9     <small class='deemphasize'>
10       <%= raw(t '.posted_by', :link_user => (link_to h(diary_entry.user.display_name), user_path(diary_entry.user)), :created => l(diary_entry.created_at, :format => :blog), :language_link => (link_to h(diary_entry.language.name), :controller => 'diary_entry', :action => 'list', :display_name => nil, :language => diary_entry.language_code)) %>
11     </small>
12
13   </div>
14
15   <div class="richtext" xml:lang="<%= diary_entry.language_code %>" lang="<%= diary_entry.language_code %>">
16     <%= diary_entry.body.to_html %>
17   </div>
18
19   <% if diary_entry.latitude and diary_entry.longitude %>
20     <%= render :partial => "location", :object => diary_entry %>
21   <% end %>
22
23   <ul class='secondary-actions clearfix'>
24     <% if params[:action] == 'list' %>
25       <li><%= link_to t('.comment_link'), :action => 'view', :display_name => diary_entry.user.display_name, :id => diary_entry.id, :anchor => 'newcomment' %></li>
26       <li><%= link_to t('.reply_link'), new_message_path(diary_entry.user, :message => { :title => "Re: #{diary_entry.title}" }) %></li>
27       <li><%= link_to t('.comment_count', :count => diary_entry.visible_comments.count), :action => 'view', :display_name => diary_entry.user.display_name, :id => diary_entry.id, :anchor => 'comments' %></li>
28     <% end %>
29
30     <% if current_user && current_user == diary_entry.user %>
31       <li><%= link_to t('.edit_link'), :action => 'edit', :display_name => diary_entry.user.display_name, :id => diary_entry.id %></li>
32     <% end %>
33
34     <% if current_user and diary_entry.user != current_user %>
35       <li>
36         <%= report_link(t(".report"), diary_entry) %>
37       </li>
38     <% end %>
39
40     <% if current_user && current_user.administrator? %>
41       <li>
42         <%= link_to t('.hide_link'), hide_diary_entry_path(:display_name => diary_entry.user.display_name, :id => diary_entry.id), :method => :post, :data => { :confirm => t('.confirm') } %>
43       </li>
44     <% end %>
45   </ul>
46 </div>