{% extends 'layouts/base.html' %} {% macro dashboard_option(title, endpoint, description=None, icon=None) %}

{% if icon is not none %} {% endif %}
{{ title }} {% if description is not none %}
{{ description }}
{% endif %}

{% endmacro %} {% block content %}
{% with messages = get_flashed_messages() %} {% if messages %}
{% endif %} {% endwith %}

App Dashboard

{# Code for deploying the main apps dashboard #} {{ dashboard_option('View Apps', 'apps.running_apps', description='View and manage running apps', icon='list layout icon') }} {{ dashboard_option('Add New Apps', 'apps.view_apps', description='Invites a new user to create their own account', icon='plus icon') }}
{% endblock %}