{% extends 'base/layout.html' %} {% block title %}Plugins Store{% endblock %} {% block subtitle %}
Manage plugins for your environment
{% endblock %} {% block content-wrapper %}
{% block content %}
{% for plugin_name, plugin in plugins.items %}
{% if plugin.private %}Paid{% else %}Free{% endif %} · {{ plugin.stars }} {% if plugin.installed %} v{{ plugin.current_version }} {% endif %}

{{ plugin_name }}

{{ plugin.description }}

{% if plugin.github_url %} View on GitHub {% endif %} {% if plugin.pypi_url %} View on PyPI {% endif %}
{% endfor %}
{% endblock %}
{% endblock %}