{% extends "baseTemplate/index.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "Test Plugin Logs - CyberPanel" %}{% endblock %} {% block header_scripts %} {% endblock %} {% block content %}

{% trans "Test Plugin Logs" %}

{% trans "View detailed activity logs for the test plugin" %}

{% trans "Back to Plugin" %} {% trans "Documentation" %}
{% if logs %} {% for log in logs %} {% endfor %}
{% trans "Action" %} {% trans "Message" %} {% trans "Timestamp" %}
{% if 'click' in log.action %} {% elif 'toggle' in log.action %} {% elif 'settings' in log.action %} {% elif 'visit' in log.action %} {% else %} {% endif %} {{ log.action|title|replace:"_":" " }} {{ log.message }} {{ log.timestamp|date:"M d, Y H:i:s" }}
{% else %}

{% trans "No Logs Found" %}

{% trans "No activity logs available yet. Start using the plugin to see logs here." %}

{% endif %}
{% endblock %}