{% extends "base.html" %} {% block content %}
{% if rename %}

{% csrf_token %}
{% else %} Переименновать
Удалить {% endif %} {% if status != 'Offline' and not is_installing %}

{% csrf_token %}
{% endif %}
{% if is_installing %}
{% block installation %} {% endblock %}
{% endif %} {% for ins in installations %}
{% for i in ins.1 %} Версия: {{i.recipe_version}}
Дата установки: {{i.date}}
Статус: {{i.status}}
Конфиг:
    {% for k, v in i.config.items %}
  • {{k}} = {{v}}
  • {% endfor %}
{% if i.log %} Лог:
{% for l in i.log %} {{l.2}}
{% endfor %}
{% endif %}


{% endfor %}
{% empty %} {% if not is_installing %}
Ничего не установлено
{% endif %} {% endfor %}
{% csrf_token %}
{% endblock %}