diff --git a/app/views/services/index.html.haml b/app/views/services/index.html.haml index 74969555..ea762073 100644 --- a/app/views/services/index.html.haml +++ b/app/views/services/index.html.haml @@ -1,6 +1,7 @@ .container.j2-page = render 'user/settings_tabs' .col-md-9.col-xs-12.col-sm-9 + = render 'layouts/messages' .panel.panel-default .panel-body - if @services.count > 0 diff --git a/app/views/user/_account.html.haml b/app/views/user/_account.html.haml index 93b51524..aa6e47e5 100644 --- a/app/views/user/_account.html.haml +++ b/app/views/user/_account.html.haml @@ -3,8 +3,10 @@ .col-md-9.col-xs-12.col-sm-9 .alert.alert-info justask currently only supports avatars over - %a{href: "https://en.gravatar.com"} Gravatar - , after you set yours up, use the E-Mail you are using for it on here as well, we will directly use this image then! + = succeed ',' do + %a{href: "https://en.gravatar.com"} Gravatar + after you set yours up, use the E-Mail you are using for it on here as well, we will directly use this image then! + = render 'layouts/messages' .panel.panel-default .panel-body = bootstrap_form_for(resource, as: resource_name, url: '/settings/account', html: { method: :put }) do |f| diff --git a/app/views/user/edit.html.haml b/app/views/user/edit.html.haml index 917fe8eb..2711d059 100644 --- a/app/views/user/edit.html.haml +++ b/app/views/user/edit.html.haml @@ -1,6 +1,7 @@ .container.j2-page = render 'settings_tabs' .col-md-9.col-xs-12.col-sm-9 + = render 'layouts/messages' .panel.panel-default .panel-body = bootstrap_form_for(current_user, url: {action: "edit"}, method: "patch") do |f|