{% extends "overview/base.html" %} {% load i18n %} {% block head %} {{ block.super }} {% endblock %} {% block content %} {% trans 'Applications' %} {% if applications %} {% for app in applications %} {% if not app.meta_icon_url %} {% else %} {% endif %} {{ app.name }} {{ app.meta_publisher }} {% trans app.meta_description %} {% endfor %} {% else %} {% trans 'No Applications available.' %} {% trans "Either no applications are defined, or you don't have access to any." %} {% if user.is_superuser %} {# todo: use guardian permissions instead #} {% trans 'Create Application' %} {% endif %} {% endif %} {% endblock %}
{{ app.name }}