{% extends 'gui2/appstore2/base.html' %} {% load static %} {% load dashboard_tags %} {% load humanize %} {% load fontawesome %} {% load i18n %} {% block breadcrumbs %} {% with tags=spec.tags|join:" " %} {% with knowledge=spec.name|add:' '|add:tags %}{{ block.super }}{% endwith %} {% endwith %} {% endblock breadcrumbs %} {% block nav_index %} {% with nav_data="apps" %}{{ block.super }}{% endwith %} {% endblock %} {% block help %} {% include 'sharedapp/partials/help.html' with spec=spec app=app %} {{block.super}} {% endblock %} {% block content %}
{% if 'icon' in spec %} {% else %} {% endif %}

{% translate spec.name %}{% if 'title' in data %} - {% translate data.title %}{% endif %}

{% if "description" in data %}

{% translate data.description %}

{% else %}

{% translate spec.description %}

{% endif %} {% include 'dashboard/_appusers.html' with usecase=usecase spec=spec %}
    {% for o in data.order %} {% if forloop.counter < currpos|add:1 %}
  • {% elif forloop.counter == currpos|add:1 %}
  • {% else %}
  • {% endif %}
    {{ forloop.counter }}
    {% translate o.title %}
  • {% endfor %}
    {% for k,values in data.header.components.items %} {% for v in values %}
    {% include 'sharedapp/components/'|add:v.template|add:'.html' with dropdown=v %}
    {% endfor %} {% endfor %}
{% for widget in data.widgets %} {% if 'dict' in widget|get_type %} {% include 'sharedapp/partials/'|add:widget.type|add:'.html' with usecase=usecase spec=spec widget=widget %} {% else %} {{widget|safe}} {% endif %} {% endfor %}
{% if 'scripts' in data %} {% for s in data.scripts %} {% endfor %} {% endif %} {% endblock %}