]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/diary_entry/list.rhtml
Adding 'New diary post' link to main Users' diaries page to help logged-in users...
[rails.git] / app / views / diary_entry / list.rhtml
index 06aebdfef3f8bf05e44d82e00ddac74edae18a56..a7aa84c6f232cb6ea18e348fb7f5688340ce59bc 100644 (file)
@@ -1,6 +1,18 @@
+<% if @this_user %>
+  <h2><%= @this_user.display_name %>'s diary</h2>
+  <% if @user == @this_user %>
+    <%= link_to 'New diary post', :controller => 'diary_entry', :action => 'new', :display_name => @user.display_name %>
+  <% end %>
+<% else %>
+  <h2>Users' diaries</h2>
+  <% if @user %>
+    <%= link_to 'New diary post', :controller => 'diary_entry', :action => 'new', :display_name => @user.display_name %>
+  <% end %>
+<% end %>
+
 <h3>Recent diary entries:</h3>
-<br />
+
 <%= render :partial => 'diary_entry/diary_entry', :collection => @entries %>
 
 <%= link_to(image_tag("RSS.gif", :size => "16x16", :border => 0), :action => 'rss') %>
-<%= auto_discovery_link_tag(:atom, :action => 'rss') %>
\ No newline at end of file
+<%= auto_discovery_link_tag(:atom, :action => 'rss') %>