{% extends "baseTemplate/index.html" %} {% load i18n %} {% block title %}{% trans "Containers List - CyberPanel" %}{% endblock %} {% block content %} {% load static %} {% get_current_language as LANGUAGE_CODE %}

{% trans "Active Containers" %}

{% trans "Container" %} {% trans "Owner" %} {% trans "Image" %} {% trans "Tag" %} {% trans "Actions" %}
{% trans "Error:" %} {$ errorMessage $}
{% trans "Page" %} {$ (pagination.containers.currentPage || 1) $} {% trans "of" %} {$ (getTotalPages('containers') || 1) $}
{% trans "Showing" %} {$ ((pagination.containers.currentPage || 1) - 1) * (pagination.containers.itemsPerPage || 10) + 1 $}-{$ Math.min((pagination.containers.currentPage || 1) * (pagination.containers.itemsPerPage || 10), totalCount) $} {% trans "of" %} {$ totalCount $} {% trans "entries" %}
{% if showUnlistedContainer %}

{% trans "Unlisted Containers" %}

{% trans "Containers listed below were either not created through the panel or were not saved to database properly" %}

{% for container in unlistedContainers %} {% endfor %}
{% trans "Container" %} {% trans "Status" %} {% trans "Actions" %}
{{container.name}}
{{container.status}}
{% endif %} {% endblock %} {% block footer_scripts %} {% endblock %}