rosa-build/app/views/wiki/_page.html.haml

20 lines
906 B
Plaintext
Raw Normal View History

#wiki-content
.wrap{:class => "#{has_footer? ? 'has-footer' : ''} #{has_sidebar? ? 'has-rightbar' : ''}"}
#wiki-body{:class => "gollum-#{format}-content"}
#template= raw @content
- if has_sidebar?
#wiki-rightbar{:class => "gollum-#{sidebar_format}-content"}= raw sidebar_content
- if has_footer?
#wiki-footer{:class => "gollum-#{footer_format}-content"}
#footer-content= raw footer_content
2012-03-23 15:36:47 +00:00
.both
#gollum-footer
%p#last-edit
= t("wiki.last_edited_by")
%b= user_link_by_user User.where(:email => author_email).first
= time_ago_in_words date.to_time - 4.hours, true
= t("layout.time.ago")
2012-01-28 02:05:13 +00:00
- unless action_name == 'preview' or cannot? :write, @project
2012-01-19 12:09:55 +00:00
%p#delete-link
= link_to project_wiki_path(@project, escaped_name), :method => :delete, :confirm => t("layout.confirm"), :class => 'button width100' do
%span= t("wiki.delete_page")