{% extends "layout.html" %} {% block title %}{{ _('Virtual Hosts') }}{% endblock %} {% block content %}
Managed Sites
{% for host in hosts %}
{{ host.domain }} {% if host.is_default %} Default {% endif %}
PHP {{ host.php_version }} {% if host.ssl_enabled %} SSL {{ host.ssl_provider }} {% if host.ssl_expiry %}({{ host.ssl_expiry|format_time('%b %d, %Y') }}){% endif %} {% else %} No SSL {% endif %}
{{ host.root_dir }}
{% if host.is_suspended %} SUSPENDED ({{ host.suspension_reason }})
{% else %} ACTIVE
{% endif %}
Traffic: {{ (host.current_traffic_bytes / 1024 / 1024)|round(2) }} MB {% if host.traffic_limit_mb > 0 %}/ {{ host.traffic_limit_mb }} MB{% endif %} Disk: {{ (host.current_disk_usage / 1024 / 1024)|round(2) }} MB {% if host.quota_limit_mb > 0 %}/ {{ host.quota_limit_mb }} MB{% endif %}
{% else %}

No hosts found. Create one to get started.

{% endfor %}
{% for host in hosts %} {% endfor %} {% endblock %}