{% import '_widget.html' as widget %} {% extends 'base.html' %} {% block content %} {% call widget.gcard('All Plugins', class='p-0') %} {% if plugins|length > 0 %} {% for plugin in plugins %} {% endfor %} {% else %} {% endif %}
# Name Status Plugin Path Uploaded By Created Installed/Uninstalled
{{ plugin.id }} {{ plugin.name }} {% if plugin.status == 1 %}Enabled{% elif plugin.status == 2 %}Disabled{% else %}Pending Approval{% endif %} {{ plugin.plugin_path }} {{ plugin.user.username }} {{ plugin.created }} {% if plugin.status == 1 %}
{% elif plugin.status == 2 %}
{% else %}
{% endif %}
No plugins found yet.
{% endcall %} {% endblock %}