<%= render :partial => 'spree/admin/shared/configuration_menu' %>

Notifications

<%= link_to "Add Notification", "/admin/notifications/new", :class => "button icon-plus create_btn", :id => "notification_add_btn"%>
<% @notifications.each do |notification| %> <% end %>
Notification Message Start Date End Date
<%= notification.notification %> <%= notification.start_date.strftime('%Y-%m-%d %H:%M') %> <%= notification.end_date.strftime('%Y-%m-%d %H:%M') %> <%= link_to '', edit_admin_notification_path(notification), :class => "icon_link with-tip icon-edit no-text", :title => 'edit'%> <%= link_to '', "/admin/notifications/#{notification.id}", method: :delete, data: { confirm: 'Are you sure?' }, :class => "delete-resource icon_link with-tip icon-trash no-text", :title => 'delete'%>
<%= paginate @notifications %>