]> git.openstreetmap.org Git - rails.git/blob - app/views/diary_entry/view.html.erb
Merge branch 'master' into moderation
[rails.git] / app / views / diary_entry / view.html.erb
1 <% content_for :heading do %>
2   <div id="userinformation" >
3     <%= user_image @entry.user %>
4     <h2><%= link_to t('diary_entry.view.user_title', :user => h(@entry.user.display_name)), :action => :list %></h2>
5     <p><%= rss_link_to :action => :rss, :display_name => @entry.user.display_name %></p>
6   </div>
7 <% end %>
8
9 <%= render :partial => 'diary_entry', :object => @entry %>
10
11 <a id="comments"></a>
12 <div class='comments'>
13   <% if @reported_comment %>
14     <%= render :partial => 'diary_comment', :collection => @reported_comment %>
15   <% else %>
16     <%= render :partial => 'diary_comment', :collection => @entry.visible_comments %>
17   <% end %>
18 </div>
19 <%= if_logged_in(:div) do %>
20   <h3 id="newcomment"><%= t 'diary_entry.view.leave_a_comment' %></h3>
21
22   <%= error_messages_for 'diary_comment' %>
23
24   <%= form_for :diary_comment, :url => { :action => 'comment' } do |f| %>
25     <%= richtext_area :diary_comment, :body, :cols => 80, :rows => 15 %>
26     <%= submit_tag t('diary_entry.view.save_button') %>
27   <% end %>
28   <% if current_user and @entry.subscribers.exists?(current_user.id) %>
29     <div class="diary-subscribe-buttons"><%= link_to t('javascripts.changesets.show.unsubscribe'), diary_entry_unsubscribe_path(:display_name => @entry.user.display_name, :id => @entry.id), :method => :post, :class => :button %></div>
30   <% elsif current_user %>
31     <div class="diary-subscribe-buttons"><%= link_to t('javascripts.changesets.show.subscribe'), diary_entry_subscribe_path(:display_name => @entry.user.display_name, :id => @entry.id), :method => :post, :class => :button %></div>
32   <% end %>
33 <% end %>
34
35 <%= if_not_logged_in(:div) do %>
36   <h3 id="newcomment"><%= raw t("diary_entry.view.login_to_leave_a_comment", :login_link => link_to(t("diary_entry.view.login"), :controller => 'user', :action => 'login', :referer => request.fullpath)) %></h3>
37 <% end %>
38
39 <% content_for :auto_discovery_link_tag do -%>
40 <%= auto_discovery_link_tag :rss, :action => :rss, :display_name => @entry.user.display_name %>
41 <% end -%>