]> git.openstreetmap.org Git - rails.git/blob - app/views/diary_entries/show.html.erb
Merge pull request #1151 from polarbearing/patch-1
[rails.git] / app / views / diary_entries / show.html.erb
1 <% content_for :heading do %>
2   <div id="userinformation" >
3     <%= user_image @entry.user %>
4     <h2><%= link_to t('.user_title', :user => h(@entry.user.display_name)), :action => :index %></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 <%= render :partial => 'diary_comment', :collection => @entry.visible_comments %>
14 </div>
15
16
17 <div>
18   <% if current_user %>
19     <h3 id="newcomment"><%= t '.leave_a_comment' %></h3>
20
21     <%= error_messages_for 'diary_comment' %>
22
23     <%= form_for :diary_comment, :url => { :action => 'comment' } do |f| %>
24       <%= richtext_area :diary_comment, :body, :cols => 80, :rows => 15 %>
25       <%= submit_tag t('.save_button') %>
26     <% end %>
27     <% if @entry.subscribers.exists?(current_user.id) %>
28       <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>
29     <% else %>
30       <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>
31     <% end %>
32   <% else %>
33     <h3 id="newcomment"><%= raw t(".login_to_leave_a_comment", :login_link => link_to(t(".login"), :controller => 'users', :action => 'login', :referer => request.fullpath)) %></h3>
34   <% end %>
35 </div>
36
37 <% content_for :auto_discovery_link_tag do -%>
38 <%= auto_discovery_link_tag :rss, :action => :rss, :display_name => @entry.user.display_name %>
39 <% end -%>