{% extends "admin/base_site_nav.html" %} {% load i18n %} {% block extrahead %}{{block.super}} {% endblock %} {% block content_title %}

{{title|capfirst|force_escape}}  {{edition|capfirst}}

{% endblock %} {% block content %}
From this screen you can install and uninstall extension apps.
Extensions can be provided by the frepple team, the frepple user community or developed by yourself.

{% trans "installed apps"|capfirst %}

{% for app in apps %}{% if app.installed %}
{{ app.summary|capfirst|safe }} {% if app.version %}  v{{ app.version }}{% endif %}
{% if request.user.is_superuser %}
{% endif %}
{% if app.description %}
{{ app.description|safe }}
{% endif %}
{% if app.documentation_url %}{% endif %}
{% endif %}{% endfor %}

{% trans "optional extra apps"|capfirst %}

{% for app in apps %}{% if not app.installed %}
{{ app.summary|capfirst|safe }} {% if app.version %}  v{{ app.version }}{% endif %}
{% if request.user.is_superuser %}
{% endif %}
{% if app.description %}
{{ app.description|safe }}
{% endif %}
{% if app.documentation_url %}{% endif %}
{% endif %}{% endfor %}
{% endblock %}