{% extends 'base/layout.html' %} {% load helpers %} {% block title %}Plugin Catalog{% endblock %} {% block tabs %} {% endblock %} {% block content %}
Plugin Catalog
{{ total_count }} plugins
{% csrf_token %}
{{ filter_form.q }}
{{ filter_form.category }}
{{ filter_form.certification }}
{{ filter_form.status }}
{{ filter_form.compatibility }}
{% for plugin in plugins %}
{{ plugin.name }} {% if plugin.featured %} Featured {% endif %}

{{ plugin.summary|truncatewords:20 }}

{% if plugin.certification == "certified" %} Certified {% elif plugin.certification == "compatible" %} Compatible {% elif plugin.certification == "deprecated" %} Deprecated {% else %} Untested {% endif %} {{ plugin.category }}
{% if plugin.is_compatible %} {% if plugin.compatibility_source == "unknown" %} Compatibility unknown {% else %} Compatible {% endif %} {% else %} {{ plugin.compatibility_reason }} {% endif %}
v{{ plugin.version }} by {{ plugin.author|default:"Unknown" }}
{% if plugin.installed_version %}
Installed: v{{ plugin.installed_version }} {% if plugin.is_activated %} Active {% else %} Not Activated {% endif %}
{% if plugin.upgrade_available %}
Upgrade available
{% endif %} {% endif %}
{% empty %}
No plugins found matching your criteria.
{% endfor %}
{% endblock %}