{% extends 'django_sample_components/pages/master.html' %} {% load sample_tags %} {% block content %}

Alert Page

{% simple_alert %} This is the content for simple_alert. {% endsimple_alert %} {% simple_alert type="info" %} info alert example. {% endsimple_alert %} {% simple_alert type="success" %} success alert example. {% endsimple_alert %} {% simple_alert type="warning" %} warning alert example. {% endsimple_alert %} {% simple_alert type="danger" %} danger alert example. {% endsimple_alert %} {% simple_alert %} This is the parent alert. {% simple_alert %} This is the child alert nested inside the parent alert. {% endsimple_alert %} {% endsimple_alert %} {% endblock %}