092fdc89fa
* Add failing spec for oauth/authorized_applications controller * Use explicit reference to flashes partial from admin layout Because some of the controllers which use the admin layout do not inherit from application controller, this partial is not in their view path.
20 lines
510 B
Text
20 lines
510 B
Text
- content_for :header_tags do
|
|
= javascript_include_tag 'application_public', integrity: true, crossorigin: 'anonymous'
|
|
|
|
- content_for :content do
|
|
.admin-wrapper
|
|
.sidebar-wrapper
|
|
.sidebar
|
|
= link_to root_path do
|
|
= image_tag 'logo.png', class: 'logo'
|
|
|
|
= render_navigation
|
|
.content-wrapper
|
|
.content
|
|
%h2= yield :page_title
|
|
|
|
= render 'application/flashes'
|
|
|
|
= yield
|
|
|
|
= render template: "layouts/application", locals: { body_classes: 'admin' }
|