diff --git a/app/views/branded/layouts/_notifications.html.erb b/app/views/branded/layouts/_notifications.html.erb new file mode 100644 index 0000000..77783a3 --- /dev/null +++ b/app/views/branded/layouts/_notifications.html.erb @@ -0,0 +1,13 @@ +<% notifications.each do |a| %> + <% unless a.acknowledged?(current_user) %> +
+ + <%= raw a.body %> + <% if a.dismissable? %> + + <% end %> +
+ <% end %> +<% end %>