{% extends "layout/default.html" %} {% set title = _("Plugins") %} {% block body %}

{{_("Plugins")}}

{% if plugins == [] %}

{{ _('You have not install some plugin') }}

{% else %} {% for plugin in plugins %}

{{plugin['name']}}

{{plugin['desc']}}


{{plugin['version']}}

{% if plugin['index'] is defined %}{{ _("View") }}{% endif %} {{ _("Uninstall") }} {{ _("Update") }} {{ _("Config") }}
{% endfor %} {% endif %}
{% for list in lists %}
{{ list['name'] }}more_vert
{{ list['name'] }}close

{{ list['description'] }}

{% if list['raw'] in plugins|safe %}

{{ _("Uninstalled") }}

{% else %}

{{ _("Installed") }}

{% endif %}
{% endfor %}

{% endblock %}