{% extends "base.html" %} {% block content %} {% if message %}

{{ message }}

{% endif %} {% if error_message %}

{{ error_message }}

{% endif %}
{% if plugins %} {% for plugin in plugins %} {% endfor %}
Plugin Version Author Category Rating Downloads Actions
{{ plugin.name }}
{{ plugin.description }}
{{ plugin.version }} {{ plugin.author }} {{ plugin.category }} {{ '%.1f' | format(plugin.rating) }} {{ plugin.downloads }}
{% if plugin.name in installed_names %}
{% else %}
{% endif %}
{% if total_plugins > per_page %}
Page {{ page }} of {{ (total_plugins + per_page - 1) // per_page }} ({{ total_plugins }} total plugins)
{% if page > 1 %} {% else %} {% endif %} {% if page < (total_plugins + per_page - 1) // per_page %} {% else %} {% endif %}
{% endif %} {% else %}

No plugins match the current filters.

{% endif %}
{% endblock %}