{% extends "layout.html" %} {% block content_header %} {{ build_breadcrumbs([ { 'name': _('Provisioning / Plugins'), 'link': url_for('.PluginView:index'), 'icon': 'file-code-o' } ]) }} {% endblock %} {% block content %} {% call build_list_containers(_('Plugins'), 'file-code-o', size='12') %} {% call build_list_table() %} {% call build_list_table_headers(get=url_for('.PluginView:get', id='')) %} {{ _('Name') }} {{ _('Description') }} {{ _('Version') }} {{ _('Size') }} {% endcall %} {% call(plugin) build_list_table_rows(resource_list['items']) %} {{ plugin.name }} {{ plugin.description }} {{ plugin.version }} {{ plugin.dsize }} {% if not plugin['editable'] %} {% else %} {% endif %} {% endcall %} {% endcall %} {% endcall %} Processing Processing your plugin, please wait ... {% endblock %} {% block additional_js %} {% endblock %}