+
+
+ No JavaScript is used creating this page.
+
+
+{% endmacro %}
+
+{% macro js_alert(content) %}
+
+
+
+ {{ content }}
+
+
+{% endmacro %}
+
+{% macro js_alert_work_in_progress() %}
+ {{ js_alert("Work in progress.") }}
+{% endmacro %}
diff --git a/project/main/templates/main/filter_list.html b/project/main/templates/main/filter_list.html
index 8e380d7..5eccfae 100644
--- a/project/main/templates/main/filter_list.html
+++ b/project/main/templates/main/filter_list.html
@@ -1,8 +1,7 @@
{% extends "main/base/layout.html" %}
+{% from "main/components/js_alert.html" import js_alert_work_in_progress %}
{% block content %}
-
- This is some filter list content bellow.
-
+ {{ js_alert_work_in_progress() }}
{% endblock %}
diff --git a/project/main/templates/main/form_validation.html b/project/main/templates/main/form_validation.html
index 55087e7..e5826da 100644
--- a/project/main/templates/main/form_validation.html
+++ b/project/main/templates/main/form_validation.html
@@ -1,8 +1,11 @@
{% 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.") }}
+