{% extends "main/base/layout.html" %} {% from "main/components/toast.html" import toast %} {% from "main/components/js_alert.html" import js_alert %} {% block content %} {{ js_alert("Just few lines of JavaScript used to pop toast.") }}
{% include "main/form_validation_content.html" %}
{{ toast(title="Form validated and saved successfully. Sorry, but I used few lines of JS code for this toast.", id="toast-success") }} {% endblock %}