{% extends "base.html" %} {% block title %}AtlasServer - Dashboard{% endblock %} {% block header_title %}Dashboard{% endblock %} {% block content %}

Control Panel

Manage your Flask, Django and FastAPI applications from a single place.

{{ applications|length }}

Registered Applications

{{ applications|selectattr('status', 'equalto', 'running')|list|length }}

Active Applications

{{ applications|selectattr('status', 'equalto', 'stopped')|list|length }}

Inactive Applications

{{ applications|selectattr('status', 'equalto', 'error')|list|length }}

Applications with Error

Registered Applications

New App
{% if applications %}
{% for app in applications %} {% endfor %}
Status Name Type Port Directory Actions
{% if app.status == "running" %} {% elif app.status == "stopped" %} {% elif app.status == "error" %} {% else %} {% endif %} {{ app.name }} {% if app.app_type == "flask" %} Flask {% elif app.app_type == "fastapi" %} FastAPI {% else %} {{ app.app_type }} {% endif %} {{ app.port or 'Not assigned' }} {{ app.directory }}
{% if app.status == "running" %}
{% elif app.status in ["stopped", "error"] %}
{% endif %}
{% else %}

No registered applications

Start by registering your first application

Register New Application
{% endif %}
{% endblock %}