Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 21, 2023 01:06 am GMT

Notice and Alerts

Create 2 partials for notices and alerts:

<%= notice %>

<%= alert %>

We can also create a single partial and pass in the css_class:

<%= message %>

Logic in Application Layout:

  <% if notice.present? %>    <%= render "shared/flash", message: notice, css_class: "success" %>  <% end %>  <% if alert.present? %>    <%= render "shared/flash", message: alert, css_class: "danger" %>  <% end %>

Original Link: https://dev.to/austinmei5/notice-and-alerts-35p6

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To