{% extends "baseTemplate/index.html" %} {% load i18n %} {% block title %}{{ name }} - {% trans "Container Management" %}{% endblock %} {% block content %} {% load static %} {% get_current_language as LANGUAGE_CODE %}
{% trans "CPU Usage" %}
{{ cpuUsage }}%
{% trans "Processing Power" %}
{% trans "Memory Usage" %}
{{ memoryUsage|floatformat:"1" }}%
{% trans "RAM Utilization" %}
{% trans "Memory Limit" %}
{{ memoryLimit }} MB
{% trans "Allocated Memory" %}

{% trans "Container Information" %}

{% trans "Image" %}
{{ image }}
{% if ports %}
{% trans "Port Mappings" %}
{% for iport, eport in ports.items %} {{ iport }} → {{ eport }} {% endfor %}
{% endif %}
{% trans "Restart Policy" %}
{% trans "Start on Boot" %}
{% trans "Enabled" %} {% trans "Disabled" %}

{% trans "Container Actions" %}

{% trans "Start" %}
{% trans "Restart" %}
{% trans "Stop" %}
{% trans "Pause" %}
{% trans "Remove" %}
{% trans "Settings" %}
{% trans "Recreate" %}
{% trans "Export" %}
{% trans "Processes" %}
{% trans "Run Command" %}

{% trans "Container Logs" %}

{% endblock %} {% block footer_scripts %} {% endblock %}