{% extends 'base.html' %} {% block content %}
{% call widget.gcard(title='All Plugins', body_class='p-0') %} {% if role == 'admin' %} {% endif %} {% if plugins|length > 0 %} {% for plugin in plugins %} {% if role == 'admin' %} {% endif %} {% endfor %} {% else %} {% endif %}
# Name Status Plugin Path Uploaded By CreatedInstalled/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 %}