{% extends 'base.html' %} {% load i18n %} {% block content %}

{% trans "Mini Apps" %}

{% trans "Discover a collection of powerful mini applications designed to enhance your productivity and creativity." %}

{% for app in mini_apps %}
{{ app.name }}

{{ app.name }}

{{ app.description }}

{% if app.url != "#" %} {% trans "Launch App" %} {% else %}
{% trans "Coming Soon" %}
{% endif %}
{% endfor %}
{% endblock %}