{% extends 'base.html' %} {% block content %} {% if domains %}

{{ _('Create a new Application') }}

{{ _("Run a NodeJS or Python application.") }}

/home/{{ current_username }}/
 
 

{% if pm2_data %}
{% if pm2_data %} {% for row in pm2_data %} {% for site in all_sites %} {% if row[1] == site.site_name %} {% endif %} {% endfor %} {% endfor %} {% else %} {% endif %}
{{ _('Application') }} {{ _('Uptime') }} {{ _('Restarts') }} {{ _('Status') }} {{ _('CPU') }} {{ _('Memory') }} {{ _('Watching') }} Actions {{ _('Type') }} Port {{ _('Startup file') }}
{{ row[1] }} {{ row[6] }} {{ row[7] }} {{ row[8] }} {{ row[9] }} {{ row[10] }} {{ row[12] }} {% if row[8] == 'stopped' %}
{% else %}
{% endif %}
{% if site.type == "NodeJS" %} {% elif site.type == "Python" %} {% else %} {{ site.type }} {% endif %} {{ site.ports }} {{ site.path }}
{{ _('No PM2 data available.') }}
{% else %}

{{ _('No existing Applications') }}

{{ _('There are no existing applications. You can start a new NodeJS or Python app below.') }}

{% endif %} {% else %}

{{ _("No Domains") }}

{{ _("Add a domain name first in order to install Python adn NodeJS applications.") }}

{{ _("Add a Domain Name") }}
{% endif %} {% endblock %}