diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-03-30 19:42:33 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-03-30 19:42:33 +0200 |
commit | e8875c6046615778c7ae6f1fc0c4a195fb5d3a03 (patch) | |
tree | f3323758f605bbf792fd422d04d86636e64f0345 /app/views/layouts | |
parent | 03fb6c16ecc3c36104185507d601af87edecc655 (diff) |
Import feature for following/blocking lists (addresses #62, #177, #201, #454)
Diffstat (limited to 'app/views/layouts')
-rw-r--r-- | app/views/layouts/admin.html.haml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/views/layouts/admin.html.haml b/app/views/layouts/admin.html.haml index 750d6036f..59fe078df 100644 --- a/app/views/layouts/admin.html.haml +++ b/app/views/layouts/admin.html.haml @@ -12,6 +12,15 @@ .content-wrapper .content %h2= yield :page_title + + - if flash[:notice] + .flash-message.notice + %strong= flash[:notice] + + - if flash[:alert] + .flash-message.alert + %strong= flash[:alert] + = yield = render template: "layouts/application", locals: { body_classes: 'admin' } |