This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
2008-06-27 00:13:15 -04:00
|
|
|
<% throw_content :for_sidebar do -%>
|
|
|
|
<% if allowed_to?(:edit_page, @page) -%><a href="<%= url(:edit_page, :id => @page.name.gsub(/ /, '_')) -%>" rel="nofollow"><img src="/images/document-save.png" /> Edit page</a><br /><% end -%>
|
|
|
|
<% if allowed_to?(:delete_page, @page) -%><a href="<%= url(:delete_page, :id => @page.name.gsub(/ /, '_')) -%>" onclick="if(!confirm('Are you sure you want to delete this page?')){return false;}" rel="nofollow"><img src="/images/edit-delete.png" /> Destroy page</a><br /><% end -%>
|
2008-08-13 11:22:08 -04:00
|
|
|
<% if @page.created_at + 3.months > Time.now -%><a href="<%= url(:controller => 'comments', :action => 'new', :page_id => @page.name.gsub(/ /, '_')) -%>" rel="nofollow"><img src="/images/mail-message-new.png" /> Post a comment</a><br /><% end -%>
|
2008-06-27 00:13:15 -04:00
|
|
|
<% end -%>
|
|
|
|
|
|
|
|
<%= partial :page, :with => [ @page ] %>
|
|
|
|
|
|
|
|
<%= partial :comments %>
|