Git URL: {{ app.repository }}
Platform: {{ app.platform }}
Pool: {{ app.pool }}
Tags: {{ app.tags }}
{% extends "apps/base.html" %} {% load staticfiles %} {% load math %} {% block navbar %} {% include "apps/navbar.html" with active="settings" %} {% endblock %} {% block app-content %}
Git URL: {{ app.repository }}
Platform: {{ app.platform }}
Pool: {{ app.pool }}
Tags: {{ app.tags }}
Name: {{ app.plan.name }}
CPU: {% if app.plan.override.cpumilli %} {{ app.plan.override.cpumilli |divide:10 }}% (override) {% elif app.plan.cpumilli %} {{ app.plan.cpumilli |divide:10 }}% {% else %} {{ app.plan.cpushare }} (CPU share) {% endif %}
Memory: {% if app.plan.override.memory %} {{ app.plan.override.memory|filesizeformat }} (override) {% else %} {{ app.plan.memory|filesizeformat }} {% endif %}
{% if app.plan.swap > 0 %}Swap: {{ app.plan.swap|filesizeformat }}
{% endif %}{{ app.envs|length }} enviroment variables
{% if app.cname or app.routers %} App URL: {% for router in app.routers %} {% if "https://" in router.address or "http://" in router.address %} {{ router.address }} {% else %} http://{{ router.address }} {% endif %} {% endfor %} {% for cname in app.cname %} http://{{ cname }} {% endfor %} {% endif %}
Owner: {{ app.owner }}
Team owner: {{ app.teamowner }}
Teams: {{ app.teams|join:", " }}