{% 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="usecases" %}{{ 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 %} {% translate data.title %}

{% if "description" in data %}

{% translate data.description %}

{% else %}

{% translate spec.description %}

{% endif %} {% include 'dashboard/_appusers.html' with usecase=usecase spec=spec %}
    {% 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 %}
{% endblock %}