openstreetmap-website/app/views/diary_entry/view.rhtml
2008-03-04 16:49:12 +00:00

24 lines
669 B
Text

<h2><%= h(@entry.user.display_name) %>'s diary</h2>
<%= render :partial => 'diary_entry', :object => @entry %>
<a id="comments"></a>
<%= render :partial => 'diary_comment', :collection => @entry.diary_comments %>
<% if @user %>
<h4 id="newcomment">Leave a comment</h4>
<%= error_messages_for 'diary_comment' %>
<% form_for :diary_comment, @diary_comment, :url => { :action => 'comment' } do |f| %>
<%= f.text_area :body, :cols => 80, :rows => 5 %>
<br />
<br />
<%= submit_tag 'Save' %>
<% end %>
<% else %>
<h4 id="newcomment"><%= link_to "Login", :controller => 'user', :action => 'login', :referer => request.request_uri %> to leave a comment</h4>
<% end %>