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

{% trans "Database Selection" %}

{% trans "No databases found for this website" %}
{% trans "Database Name" %} {$ selectedDB $}
{% trans "Database Size" %} {$ databaseInfo.size $}
{% trans "Tables" %} {$ databaseInfo.tables $}
{% trans "Warning: This action cannot be undone!" %}
{% trans "Deleting a database will permanently remove:" %}
  • {% trans "All tables and their data" %}
  • {% trans "All stored procedures and functions" %}
  • {% trans "All user permissions for this database" %}
  • {% trans "All triggers and events" %}

{% trans "Are you absolutely sure?" %}

{% trans "This action will permanently delete the database and all its data." %}

{$ selectedDB $}
{% trans "Error message:" %} {$ errorMessage $}
{% trans "Database deleted successfully." %}
{% trans "Could not connect to server. Please refresh this page." %}
{% endblock %} {% block footer_scripts %} {% endblock %}