{% extends "baseTemplate/index.html" %}
{% load i18n %}
{% block title %}{% trans "Plugin Not Found - CyberPanel" %}{% endblock %}
{% block header_scripts %}
{% endblock %}
{% block content %}
{% trans "Plugin Not Found" %}
{% if plugin_name %}
{% trans "The plugin" %} "{{ plugin_name }}" {% trans "could not be found." %}
{% else %}
{% trans "The requested plugin could not be found." %}
{% endif %}
{% if error %}
{{ error }}
{% endif %}