{% extends "admin/master.html" %}
{% import 'admin/layout.html' as layout with context %}
{% block body %}
Dashboard
{%- for item in admin_view.admin.menu() %}
{% if not item.is_category() %}
{%- if item.is_accessible() and item.is_visible() and item.name != 'Home' -%}
{{ dashboard_table(item) }}
{% endif %}
{% else %}
{%- if item.get_children() %}
{% if item.class_name %} {% endif %}{{ item.name }}