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

19 lines
815 B
Plaintext
Raw Normal View History

#wiki-content
2014-01-21 04:51:49 +00:00
.wrap{class: "#{has_footer? ? 'has-footer' : ''} #{has_sidebar? ? 'has-rightbar' : ''}"}
#wiki-body{class: "gollum-#{format}-content"}
#template= raw @content
- if has_sidebar?
2014-01-21 04:51:49 +00:00
#wiki-rightbar{class: "gollum-#{sidebar_format}-content"}= raw sidebar_content
- if has_footer?
2014-01-21 04:51:49 +00:00
#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")
2014-01-21 04:51:49 +00:00
%b= user_link_by_user User.where(email: author_email).first
= datetime_moment date, tag: :span
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
2014-01-21 04:51:49 +00:00
= link_to project_wiki_path(@project, escaped_name), method: :delete, confirm: t("layout.confirm") do
%span= t("wiki.delete_page")