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

{{ name | title }}

by {{ plugin.author }}

{% for keyword in plugin.keywords %}{{ keyword }}{%if not forloop.last%}, {%endif%}{% endfor %}

{{ 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 %} {% if plugin.is_enabled == False %} Install {% else %} Uninstall {% endif %}
{% if forloop.counter|divisibleby:3 %}
{% endif %} {% endfor %}
{% endblock %}