{% extends "base.html" %} {% block title %}{{ category.name }} - Marketplace - Hop3 Dashboard{% endblock %} {% block content %}

{{ category.name }}

{{ apps | length }} application{{ 's' if apps | length != 1 else '' }} in this category.

{% if apps %}
{% for app in apps %} {% include "dashboard/marketplace/_app_card.html" %} {% endfor %}
{% else %}

No apps in this category

Check back later for new additions.

{% endif %}
{% endblock %}