46 lines
944 B
Plaintext
46 lines
944 B
Plaintext
!!!
|
|
|
|
%html{:xmlns=>"http://www.w3.org/1999/xhtml", :"xml:lang"=>"fr", :lang=>"fr"}
|
|
%head
|
|
%meta{:"http-equiv" => "content-type" ,:content =>"text/html;charset=UTF-8" }
|
|
%title
|
|
Administration
|
|
|
|
|
|
|
|
= csrf_meta_tag
|
|
|
|
=javascript_include_tag "/assets/javascripts/core/jquery-1.6.1.min.js"
|
|
=javascript_include_tag "/assets/javascripts/core/jquery.reject.min.js"
|
|
=javascript_include_tag '/assets/javascripts/admin/browser.js'
|
|
|
|
= stylesheet_link_tag '/assets/stylesheets/connexion'
|
|
= stylesheet_link_tag '/assets/stylesheets/qi/general'
|
|
= stylesheet_link_tag '/assets/stylesheets/qi/forms'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%body
|
|
#title=yield :title
|
|
#main
|
|
|
|
|
|
|
|
= yield
|
|
#flash
|
|
-if flash[:alert] or (@flash_i and @flash_i[:alert])
|
|
.message.closeable.alert
|
|
= flash[:alert]
|
|
= @flash_i[:alert] if @flash_i and @flash_i[:alert]
|
|
-if flash[:notice]
|
|
.message.closeable.notice
|
|
= flash[:notice]
|
|
|
|
|
|
|
|
|
|
|