{% extends "base.html" %}
{% load crispy_forms_tags i18n permissions translations %}
{% block nav_pills %}
{% documentation_icon 'admin/addons' right=True %}
{% if not object_list %}
{% translate "No add-ons currently installed" %}
{% else %}
{% blocktranslate count count=object_list|length %}Installed {{ count }} add-on{% plural %}Installed {{ count }} add-ons{% endblocktranslate %}
{% endif %}
{% for addon in object_list %}
|
{% if addon.is_valid %}
{% include 'addons/addon_head.html' with addon=addon.addon %}
{% else %}
{{ addon.addon_name }}
{% endif %}
|
{% translate "View Logs" %}
{% if addon.is_valid and addon.addon.has_settings %}
{% translate "Configure" %}
{% endif %}
|
{% endfor %}
{% documentation_icon 'admin/addons' right=True %}
{% translate "Available add-ons" %}
{% for addon in available %}
| {% include 'addons/addon_head.html' with addon=addon %} |
{% if scope != "component" and addon.needs_component %}
{% else %}
{% endif %}
|
{% endfor %}
{% format_last_changes_content last_changes=last_changes user=user %}
{% translate "Browse all add-on changes" %}
{% endblock content %}