]> git.openstreetmap.org Git - rails.git/blob - app/views/diary_entry/view.html.erb
Fix resizing of the map area in RTL layouts
[rails.git] / app / views / diary_entry / view.html.erb
1 <div id="diary_entry">
2   <%= user_image @entry.user %>
3
4   <h2><%= link_to t('diary_entry.view.user_title', :user => h(@entry.user.display_name)), :action => :list %></h2>
5
6   <%= render :partial => 'diary_entry', :object => @entry %>
7
8   <a id="comments"></a>
9
10   <%= render :partial => 'diary_comment', :collection => @entry.visible_comments %>
11
12   <% if_logged_in(:div) do %>
13     <h4 id="newcomment"><%= t 'diary_entry.view.leave_a_comment' %></h4>
14
15     <%= error_messages_for 'diary_comment' %>
16
17     <% form_for :diary_comment, @diary_comment, :url => { :action => 'comment' } do |f| %>
18       <%= f.text_area :body, :cols => 80, :rows => 5 %>
19       <br />
20       <br />
21       <%= submit_tag t('diary_entry.view.save_button') %>
22     <% end %>
23   <% end %>
24
25   <% if_not_logged_in(:div) do %>
26     <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>
27   <% end %>
28 </div>