{% extends "base.html" %} {% block title %}Dashboard — vCenter Portal{% endblock %} {% block content %}

Welcome, {{ current_user.username }}

{% if current_user.is_admin() %} You're viewing all VMs in the vCenter inventory. {% else %} You're viewing only VMs assigned to you. Contact your administrator for additional access. {% endif %}

{{ total }}
Total VMs visible
{{ running }}
Powered On
{{ stopped }}
Powered Off
View Virtual Machines {% if current_user.is_admin() %} Manage Assignments Manage Users {% endif %}
{% endblock %}