{% extends "base.html" %} {% block title %}Explorar Aplicaciones - IP Manager{% endblock %} {% block header_title %}Explorar Aplicaciones{% endblock %} {% block content %}
{% if applications.items %}
Aplicaciones Disponibles {{ applications.total }}
{% for app in applications.items %}
{% if app.icon_filename %} {{ app.name }} {% else %} {% endif %}
{{ app.name }}

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

{{ app.ip_address }} {% if app.port and app.port not in [80, 443] %}:{{ app.port }}{% endif %} {% if app.category %} {{ app.category.name }} {% endif %} {% if app.tags %}
{% for tag in app.get_tags_list()[:3] %} {{ tag }} {% endfor %} {% if app.get_tags_list()|length > 3 %} +{{ app.get_tags_list()|length - 3 }} {% endif %}
{% endif %}
{{ app.access_count }} accesos
{% endfor %}
{% for app in applications.items %} {% endfor %}
Aplicación Categoría Dirección Accesos Acciones
{% if app.icon_filename %} {{ app.name }} {% else %} {% endif %}
{{ app.name }}
{{ app.description[:50] if app.description else 'Sin descripción' }}...
{% if app.category %} {{ app.category.name }} {% else %} Sin categoría {% endif %} {{ app.ip_address }}{% if app.port and app.port not in [80, 443] %}:{{ app.port }}{% endif %} {{ app.access_count }}
{% if applications.pages > 1 %}
{% endif %}
{% else %}
No se encontraron aplicaciones

{% if search_query or current_category %} Intenta ajustar tus filtros de búsqueda o explora todas las categorías. {% else %} Aún no hay aplicaciones disponibles en el sistema. {% endif %}

{% if search_query or current_category %} Ver Todas las Aplicaciones {% endif %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}