{% extends 'base.html' %} {% load staticfiles %} {% load compress %} {% block page_header %} Plugins {% endblock %} {% block custom_css %} {% endblock %} {% block custom_js %} {% endblock %} {% block content %}
{% for name, plugin in lisa_plugins.items %}
{{ plugin.remote_version }}

{{ name }}

by {{ plugin.author }}

{{ plugin.summary }}

{% if plugin.should_upgrade == True %}

You have the version {{ plugin.local_version }}. You should upgrade

{% endif %}
{% if plugin.should_upgrade == True %} Upgrade {% endif %} Install {% if plugin.is_enabled == False %} Install {% else %} Uninstall {% endif %}
{% if forloop.counter|divisibleby:3 %}
{% endif %} {% endfor %}
{% endblock %}