{% extends "sb-admin/master.html" %} {% from "sb-admin/macros/dashboard/counticon.html" import count_icon %} {% from "sb-admin/macros/dashboard/areachart.html" import area_chart %} {% from "sb-admin/macros/dashboard/barchart.html" import bar_chart %} {% from "sb-admin/macros/dashboard/timeline.html" import timeline %} {% from "sb-admin/macros/dashboard/notification.html" import notification %} {% from "sb-admin/macros/dashboard/donut.html" import donut %} {% from "sb-admin/macros/dashboard/chat.html" import chat %} {% block body %}
{{count_icon(26, "New Comments!", "comments", "primary", "#")}}
{{count_icon(12, "New Tasks!", "tasks", "green", "#")}}
{{count_icon(124, "New Orders!", "shopping-cart", "yellow", "#")}}
{{count_icon(13, "Support Tickets!", "support", "red", "#")}}
{{area_chart("Area Chart Example")}} {{bar_chart("Bar Chart Example")}} {{timeline("Responsive Timeline")}}
{{notification("Notifications Panel")}} {{donut("Donut Chart Example")}} {{chat("Chat")}}
{% endblock %} {% block tail %} {% endblock %}