{% extends "box/summary.html" %}
{% load i18n %}
{% get_current_language as LANGUAGE_CODE %}
{% block nameclass %}{% if vm.state == 'ACTIVE' %}vm-on{% else %}vm-off{% endif %}{% endblock nameclass %}
{% block name %}
{{vm.name|truncatechars:20}}
{% endblock %}
{% block status %}
{{vm.state}}
{% endblock status %}
{% block actions %}
{% if vm.waiting %}
{% elif vm.state == 'ACTIVE' %}
{% elif vm.state == 'PENDING' %}
{% trans "starting…" %}
{% elif vm.state == 'STOPPED' %}
{% elif vm.state == 'FAILED' %}
{% endif %}
{% endblock actions %}