1 <%= user_image @entry.user, :style => "float: right" %>
3 <h2><%= t 'diary_entry.view.user_title', :user => h(@entry.user.display_name) %></h2>
5 <%= render :partial => 'diary_entry', :object => @entry %>
9 <%= render :partial => 'diary_comment', :collection => @entry.visible_comments %>
13 <h4 id="newcomment"><%= t 'diary_entry.view.leave_a_comment' %></h4>
14 <%= error_messages_for 'diary_comment' %>
15 <% form_for :diary_comment, @diary_comment, :url => { :action => 'comment' } do |f| %>
16 <%= f.text_area :body, :cols => 80, :rows => 5 %>
19 <%= submit_tag t('diary_entry.view.save_button') %>
24 <h4 id="newcomment"><%= t("diary_entry.view.login_to_leave_a_comment", :login_link => link_to(t("diary_entry.view.login"), :controller => 'user', :action => 'login', :referer => request.request_uri)) %></h4>