]> git.openstreetmap.org Git - rails.git/blob - app/views/diary_entry/view.html.erb
Merge branch 'master' into notes
[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   </div>
6 <% end %>
7
8 <%= render :partial => 'diary_entry', :object => @entry %>
9
10 <a id="comments"></a>
11 <div class='comments'>
12 <%= render :partial => 'diary_comment', :collection => @entry.visible_comments %>
13 </div>
14 <%= if_logged_in(:div) do %>
15   <h3 id="newcomment"><%= t 'diary_entry.view.leave_a_comment' %></h3>
16
17   <%= error_messages_for 'diary_comment' %>
18
19   <%= form_for :diary_comment, :url => { :action => 'comment' } do |f| %>
20     <%= richtext_area :diary_comment, :body, :cols => 80, :rows => 15 %>
21     <%= submit_tag t('diary_entry.view.save_button') %>
22   <% end %>
23 <% end %>
24
25 <%= if_not_logged_in(:div) do %>
26   <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>
27 <% end %>