{% extends "base.html" %} {% block title %}Dashboard - IP Manager{% endblock %} {% block header_title %}Dashboard{% endblock %} {% block content %}

{{ total_favorites }}

Favoritos

{{ total_apps }}

Aplicaciones

{{ categories|length }}

Categorías

{{ recent_apps|length }}

Recientes

Resultados de búsqueda:
{% if favorites %}
Mis Favoritos
Agregar más
{% for app in favorites %}
{% if app.icon_filename %} {{ app.name }} {% else %} {% endif %}
{{ app.name }}

{% if app.description %} {% if app.description|length > 100 %} {{ app.description[:100] }}... {% else %} {{ app.description }} {% endif %} {% else %} Sin descripción {% endif %}

{{ app.ip_address }}
{% endfor %}
{% else %}
No tienes aplicaciones favoritas

Explora nuestro catálogo y marca tus aplicaciones favoritas para acceso rápido

Explorar Aplicaciones
{% endif %} {% if recent_apps %}
Accesos Recientes
{% for app in recent_apps %}
{% if app.icon_filename %} {{ app.name }} {% else %} {% endif %}
{{ app.name }}

{% if app.description %} {% if app.description|length > 100 %} {{ app.description[:100] }}... {% else %} {{ app.description }} {% endif %} {% else %} Sin descripción {% endif %}

{% set is_favorite = False %} {% for fav in favorites %} {% if fav.id == app.id %} {% set is_favorite = True %} {% endif %} {% endfor %} {{ app.ip_address }}
{% endfor %}
{% endif %}
Explorar por Categorías
{% endblock %} {% block extra_js %} {% endblock %}